/* ==========================================================================
   DIANEX — Launching Soon
   ========================================================================== */

:root{
  --navy:        #0e2452;
  --navy-deep:   #0a1a3d;
  --navy-soft:   #17356e;
  --green:       #4c8b2c;
  --green-dark:  #3f7724;
  --green-light: #7cc243;
  --ink:         #1c2b45;
  --hair:        #cfd8e3;
  --page:        #ffffff;
}

*,
*::before,
*::after{ box-sizing: border-box; }

html{ -webkit-text-size-adjust: 100%; }

body{
  margin: 0;
  padding: 26px 18px;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%,  #f3f6fa 0%, transparent 55%),
    radial-gradient(circle at 85% 100%, #eef2f7 0%, transparent 50%),
    #e9edf3;
}

.svg-defs{ position:absolute; width:0; height:0; overflow:hidden; }

/* --------------------------------------------------------------------------
   Poster shell
   -------------------------------------------------------------------------- */
.poster{
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 34px 60px 30px;
  overflow: hidden;
  background:
    linear-gradient(160deg, #ffffff 0%, #ffffff 55%, #f4f6fa 78%, #eaeef4 100%);
  box-shadow: 0 26px 70px rgba(14, 36, 82, .18);
}

/* faint “fabric” streaks in the lower half of the sheet */
.swoosh{
  position: absolute;
  left: -10%;
  bottom: -18%;
  width: 120%;
  height: 55%;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(120% 60% at 20% 100%, rgba(180,196,216,.30) 0 42%, transparent 62%),
    radial-gradient(90% 50% at 78% 100%,  rgba(190,204,222,.26) 0 45%, transparent 65%);
  transform: rotate(-3deg);
}

/* --- corner chevrons ---------------------------------------------------- */
.corner{
  position: absolute;
  width: 300px;
  height: 300px;
  z-index: 3;
  pointer-events: none;
}
.corner .bar{
  position: absolute;
  display: block;
  border-radius: 2px;
}
.corner .navy{ background: var(--navy); }
.corner .green{ background: var(--green); }

/* top-left */
.corner.tl{ top: 0; left: 0; }
.corner.tl .green{ width: 250px; height: 15px; top: 34px; left: -63px; transform: rotate(-45deg); }
.corner.tl .navy { width: 300px; height: 26px; top: 56px; left: -66px; transform: rotate(-45deg); }

/* top-right (mirrored) */
.corner.tr{ top: 0; right: 0; }
.corner.tr .green{ width: 250px; height: 15px; top: 34px; right: -63px; transform: rotate(45deg); }
.corner.tr .navy { width: 300px; height: 26px; top: 56px; right: -66px; transform: rotate(45deg); }

/* bottom corners — smaller accents */
.corner.bl{ bottom: 0; left: 0; width: 200px; height: 200px; }
.corner.bl .navy{ width: 170px; height: 16px; bottom: 40px; left: -50px; transform: rotate(45deg); }

.corner.br{ bottom: 0; right: 0; width: 200px; height: 200px; }
.corner.br .navy{ width: 170px; height: 16px; bottom: 40px; right: -50px; transform: rotate(-45deg); }

/* --- watermarks & dot grids --------------------------------------------- */
.wm{
  position: absolute;
  z-index: -2;
  color: #ccd7e4;
  pointer-events: none;
  opacity: .9;
}
.wm1{ width: 66px;  top: 118px;  left: 92px;  transform: rotate(-10deg); }
.wm2{ width: 54px;  top: 306px;  left: 36px;  transform: rotate(4deg); }
.wm3{ width: 84px;  bottom: 210px; left: 44px; transform: rotate(8deg); }
.wm4{ width: 60px;  top: 258px;  right: 48px; transform: rotate(12deg); }
.wm5{ width: 92px;  bottom: 168px; right: 58px; transform: rotate(-7deg); }

.dots{
  position: absolute;
  z-index: -1;
  width: 88px;
  height: 88px;
  pointer-events: none;
  background-image: radial-gradient(var(--navy) 1.6px, transparent 1.7px);
  background-size: 15px 15px;
  opacity: .55;
}
.dots-l{ top: 172px; left: 30px; }
.dots-r{ top: 172px; right: 30px; }

.topdots{
  position: absolute;
  z-index: -1;
  top: 30px;
  width: 190px;
  height: 96px;
  pointer-events: none;
  background-image: radial-gradient(#b9c6d8 1.5px, transparent 1.6px);
  background-size: 13px 13px;
  opacity: .55;
}
.topdots-l{
  left: 50%;
  margin-left: -400px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%);
          mask-image: linear-gradient(90deg, transparent, #000 55%);
}
.topdots-r{
  left: 50%;
  margin-left: 210px;
  -webkit-mask-image: linear-gradient(270deg, transparent, #000 55%);
          mask-image: linear-gradient(270deg, transparent, #000 55%);
}

/* --------------------------------------------------------------------------
   Logo
   -------------------------------------------------------------------------- */
.brand{ text-align: center; position: relative; z-index: 2; }

.logo{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 6.4vw, 92px);
  font-weight: 900;
  letter-spacing: .006em;
  line-height: 1;
}
/* each letter is its own flex item so the wordmark stays evenly tracked */
.logo-l{
  position: relative;
  flex: none;
  color: var(--navy);
}
.logo-x{ color: var(--green); }

.brand-sub{
  margin: .55em 0 0;
  color: var(--navy);
  font-size: clamp(12px, 1.42vw, 21px);
  font-weight: 700;
  letter-spacing: .215em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero{ text-align: center; position: relative; z-index: 2; }

.headline{
  margin: .06em 0 0;
  font-size: clamp(40px, 7.3vw, 108px);
  font-weight: 900;
  letter-spacing: -.004em;
  line-height: 1.02;
  white-space: nowrap;
  text-transform: uppercase;
}
.headline .navy { color: var(--navy); }
.headline .green{ color: var(--green); }

/* shared hairline + gem divider */
.rule{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 16px auto 0;
  max-width: 760px;
}
.rule .line{
  flex: 1;
  height: 2px;
  background: var(--navy);
  opacity: .85;
}
.rule-gem{
  width: 34px;
  flex: none;
  fill: var(--navy);
}

.subhead{
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(15px, 1.85vw, 27px);
  font-weight: 400;
  line-height: 1.42;
}
.subhead b{ font-weight: 600; }
.subhead .green{ color: var(--green); }
.subhead .navy { color: var(--navy); }

/* --------------------------------------------------------------------------
   Offerings panel
   -------------------------------------------------------------------------- */
.offerings{
  position: relative;
  z-index: 2;
  margin: 40px auto 0;
  max-width: 1150px;
  padding: 44px 26px 26px;
  border: 2px solid #b9c7d8;
  border-radius: 20px;
  background: rgba(255,255,255,.55);
}

.offerings-pill{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 11px 34px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: clamp(12px, 1.28vw, 19px);
  font-weight: 700;
  letter-spacing: .045em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(76,139,44,.28);
}

.offer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.offer{
  padding: 4px 20px 2px;
  text-align: center;
  border-left: 1.5px solid #cad5e2;
}
.offer:first-child{ border-left: 0; }

.stone-wrap{
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.stone{ width: 112px; height: 112px; filter: drop-shadow(0 5px 9px rgba(30,55,95,.20)); }
.stone.small{ width: 96px; height: 96px; }

/* rough-stone cluster */
.cluster{
  position: relative;
  width: 100%;
}
.cluster svg{
  position: absolute;
  left: 50%;
  filter: drop-shadow(0 3px 6px rgba(30,55,95,.18));
}
.cluster svg:nth-child(1){ width: 48px; margin-left: -78px; top: 26px; transform: rotate(-16deg); }
.cluster svg:nth-child(2){ width: 52px; margin-left: -50px; top: 10px; transform: rotate(4deg); }
.cluster svg:nth-child(3){ width: 48px; margin-left: -16px; top: 18px; transform: rotate(-8deg); }
.cluster svg:nth-child(4){ width: 52px; margin-left: 14px;  top: 8px;  transform: rotate(13deg); }
.cluster svg:nth-child(5){ width: 46px; margin-left: 46px;  top: 26px; transform: rotate(-3deg); }
.cluster svg:nth-child(6){ width: 54px; margin-left: -56px; top: 52px; transform: rotate(8deg); }
.cluster svg:nth-child(7){ width: 56px; margin-left: -8px;  top: 56px; transform: rotate(-11deg); }

.offer h3{
  margin: 0;
  color: var(--navy);
  font-size: clamp(13px, 1.34vw, 20px);
  font-weight: 800;
  letter-spacing: .012em;
  text-transform: uppercase;
  white-space: nowrap;
}
.offer-sub{
  margin: 5px 0 12px;
  color: var(--green);
  font-size: clamp(11px, 1.05vw, 16px);
  font-weight: 700;
  letter-spacing: .022em;
  text-transform: uppercase;
}

.gem-list{
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.gem-list li{
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 3.5px 0;
  color: var(--ink);
  font-size: clamp(13px, 1.22vw, 18px);
  font-weight: 400;
  line-height: 1.15;
}
.gem-list svg{
  flex: none;
  width: 13px;
  height: 13px;
  fill: var(--green);
}
.gem-list.two-col{
  display: grid;
  grid-template-columns: auto auto;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  column-gap: 26px;
}

.more{
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(13px, 1.22vw, 18px);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   Why choose
   -------------------------------------------------------------------------- */
.why{ position: relative; z-index: 2; margin-top: 30px; }

.why-rule{ max-width: 940px; gap: 22px; }
.why-rule h2{
  margin: 0;
  flex: none;
  color: var(--navy);
  font-size: clamp(17px, 2.02vw, 30px);
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  white-space: nowrap;
}
.why-rule .line{ height: 2px; background: var(--navy); opacity: .8; }

.features{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 940px;
  margin: 22px auto 0;
}
.feature{
  padding: 4px 10px;
  text-align: center;
  border-left: 1.5px solid #cad5e2;
}
.feature:first-child{ border-left: 0; }

.fico{
  width: 46px;
  height: 46px;
  color: var(--green);
  display: block;
  margin: 0 auto 10px;
}
.feature p{
  margin: 0;
  color: var(--ink);
  font-size: clamp(12px, 1.12vw, 16px);
  font-weight: 400;
  line-height: 1.32;
}

/* --------------------------------------------------------------------------
   CTA bar
   -------------------------------------------------------------------------- */
.cta{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 940px;
  margin: 30px auto 0;
}

.cta-left,
.cta-right{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 40px;
  text-decoration: none;
}

.cta-left{
  flex: 1 1 55%;
  padding-right: 62px;
  background: linear-gradient(90deg, var(--navy-deep), var(--navy-soft));
  clip-path: polygon(28px 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
}

.cta-right{
  flex: 1 1 45%;
  margin-left: -30px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  clip-path: polygon(30px 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
  padding-left: 52px;
}

.cta-icon{
  flex: none;
  display: block;
  width: 52px;
  height: 52px;
}
.cta-icon svg{ width: 100%; height: 100%; display: block; }

.cta-copy{ line-height: 1.15; }

.cta-title{
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 2.1vw, 31px);
  font-weight: 800;
  letter-spacing: .012em;
  text-transform: uppercase;
}
.cta-title .lime{ color: var(--green-light); }

.cta-sub{
  margin: 3px 0 0;
  color: #dfe6f1;
  font-size: clamp(12px, 1.25vw, 19px);
  font-weight: 300;
}
.cta-sub.light{
  margin: 0 0 2px;
  color: #ffffff;
  font-size: clamp(12px, 1.3vw, 20px);
  font-weight: 400;
}

.cta-phone{
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 2.2vw, 33px);
  font-weight: 800;
  letter-spacing: .008em;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-foot{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 940px;
  margin: 22px auto 0;
}
.site-foot .line{
  flex: 1;
  height: 2px;
  background: var(--navy);
  opacity: .8;
}
.web{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.foot-globe{
  width: clamp(20px, 2vw, 30px);
  height: clamp(20px, 2vw, 30px);
  color: var(--navy);
}
.url{
  color: var(--navy);
  font-size: clamp(16px, 1.95vw, 29px);
  font-weight: 600;
  letter-spacing: .01em;
}
.url b{ font-weight: 800; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1050px){
  .poster{ padding: 30px 34px 26px; }
  .offer{ padding: 4px 12px; }
  .offer h3{ white-space: normal; }
}

@media (max-width: 880px){
  .offer-grid{ grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .offer:nth-child(odd){ border-left: 0; }
  .offer:nth-child(n+3){ padding-top: 22px; border-top: 1.5px solid #cad5e2; }

  .features{ grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .feature:nth-child(3n+1){ border-left: 0; }
  .feature:nth-child(n+4){ padding-top: 18px; border-top: 1.5px solid #cad5e2; }

  .corner{ width: 190px; height: 190px; }
  .corner.tl .green,
  .corner.tr .green{ width: 160px; height: 11px; top: 24px; }
  .corner.tl .navy,
  .corner.tr .navy { width: 190px; height: 18px; top: 38px; }
  .corner.tl .green{ left: -42px; }  .corner.tl .navy{ left: -44px; }
  .corner.tr .green{ right: -42px; } .corner.tr .navy{ right: -44px; }

  .dots, .topdots, .wm{ display: none; }
}

@media (max-width: 640px){
  body{ padding: 12px 8px; }
  .poster{ padding: 26px 18px 22px; }

  .cta{ display: block; }
  .cta-left,
  .cta-right{
    width: 100%;
    margin: 0;
    padding: 15px 22px;
    clip-path: none;
    justify-content: center;
  }
  .cta-right{ margin-top: 8px; }

  .headline{ white-space: normal; font-size: clamp(34px, 12.5vw, 62px); line-height: 1.05; }
  .rule{ gap: 12px; }
  .why-rule h2{ font-size: 16px; white-space: normal; }
  .features{ grid-template-columns: repeat(2, 1fr); }
  .feature{ border-left: 0; }
  .site-foot{ gap: 12px; }
}

@media (max-width: 460px){
  .offer-grid{ grid-template-columns: 1fr; }
  .offer{ border-left: 0; }
  .offer:nth-child(n+2){ padding-top: 22px; border-top: 1.5px solid #cad5e2; }
  .gem-list.two-col{ grid-template-rows: repeat(5, auto); grid-auto-flow: row; grid-template-columns: auto; }
}

@media print{
  body{ padding: 0; background: #fff; }
  .poster{ box-shadow: none; max-width: none; }
}
