/* ============================================================
   GetsetGrow Marketing Media — design tokens
   Color:
     --ink        #0F1E30  primary navy background
     --ink-2      #16283D  secondary panel navy
     --ink-3      #0A141F  deepest navy (footer / dark text on gold)
     --gold       #E8A33D  accent — rocket flame from the mark
     --cream      #F5F1E7  light background / paper
     --line       rgba(245,241,231,0.14)
   Type:
     Display / headings : "Space Grotesk" — angular, technical, matches the rocket mark
     Body / UI           : "IBM Plex Sans" — clean, legible, works at small sizes
   Layout concept:
     An ascending diagonal — a growth trajectory — is the one repeated structural
     idea (hero headline steps upward, services run as a staircase, stats sit on
     a rising baseline). Everything else stays quiet: no cards-with-shadows kit,
     no ALL-CAPS eyebrows, no arrow-suffixed buttons.
   ============================================================ */

:root{
  --ink: #0F1E30;
  --ink-2: #16283D;
  --ink-3: #0A141F;
  --gold: #E8A33D;
  --gold-dim: #C98A2C;
  --cream: #F5F1E7;
  --line: rgba(245,241,231,0.14);
  --line-strong: rgba(245,241,231,0.28);
  --text-soft: rgba(245,241,231,0.72);
  --text-faint: rgba(245,241,231,0.5);
  --radius: 4px;
  --wrap: 1320px;
  --font-display: "Space Grotesk", "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin:0;
  background: var(--cream);
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3{
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p{ margin: 0; }

a{ color: inherit; text-decoration: none; }

img{ max-width: 100%; display: block; }

ul{ margin:0; padding:0; list-style:none; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--gold); color: var(--ink-3); }
.btn-primary:hover{ background: #f0af52; }
.btn-ghost{ border-color: var(--line-strong); color: var(--cream); }
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold); }
.btn-dark{ background: var(--ink-3); color: var(--cream); }
.btn-dark:hover{ background: #000; }
.btn-block{ width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(15,30,48,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-row{
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
  color: var(--cream);
}
.brand{
  display: flex; align-items: center; gap: 12px;
  margin-right: auto;
}
.brand-mark{ width: 40px; height: 40px; border-radius: 50%; }
.brand-text{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.15;
  display: flex; flex-direction: column;
  color: var(--cream);
}
.brand-text em{
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.main-nav{ display: flex; gap: 30px; }
.main-nav a{
  color: var(--text-soft);
  font-size: 15px;
  transition: color .15s ease;
}
.main-nav a:hover{ color: var(--cream); }
.header-cta{
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 15px;
  white-space: nowrap;
}
.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav-toggle span{
  display: block; height: 2px; width: 100%;
  background: var(--cream); border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 70%, var(--ink-2) 100%);
  color: var(--cream);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 60px;
  overflow: hidden;
  position: relative;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.scroll-cue{
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span{
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue{
  0%{ transform: translateY(0); opacity: 1; }
  70%{ transform: translateY(10px); opacity: 0; }
  100%{ transform: translateY(0); opacity: 0; }
}
@media (max-width: 720px){
  .scroll-cue{ display: none; }
}
.hero-kicker{
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 18px;
}
h1.ascend{
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(48px, 7vw, 92px);
}
h1.ascend span{
  display: block;
  transform: translateX(calc(var(--i, 0) * 0px));
}
h1.ascend span:nth-child(1){ margin-left: 0; opacity: 0.55; }
h1.ascend span:nth-child(2){ margin-left: 5%; opacity: 0.78; }
h1.ascend span:nth-child(3){ margin-left: 10%; color: var(--gold); }

.hero-sub{
  display: block;
  max-width: 46ch;
  margin-top: 26px;
  font-size: 18px;
  color: var(--text-soft);
}
.hero-actions{
  display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap;
}
.hero-proof{
  margin-top: 40px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--text-faint);
}
.hero-proof a:hover{ color: var(--gold); }
.dot-sep{
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--text-faint);
  display: inline-block;
}

.hero-visual{ position: relative; }
.trail-svg{ width: 100%; height: auto; }
.trail-svg path{
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw 1.8s ease forwards .3s;
}
.trail-node circle{ fill: var(--gold); opacity: 0; animation: pop .5s ease forwards; }
.trail-node text{
  fill: var(--text-soft);
  font-family: var(--font-body);
  font-size: 13px;
  opacity: 0; animation: pop .5s ease forwards;
}
.trail-node[style*="--d:0"] circle, .trail-node[style*="--d:0"] text{ animation-delay: .5s; }
.trail-node[style*="--d:1"] circle, .trail-node[style*="--d:1"] text{ animation-delay: .9s; }
.trail-node[style*="--d:2"] circle, .trail-node[style*="--d:2"] text{ animation-delay: 1.3s; }
.trail-node[style*="--d:3"] circle, .trail-node[style*="--d:3"] text{ animation-delay: 1.7s; }
.trail-node[style*="--d:4"] circle, .trail-node[style*="--d:4"] text{ animation-delay: 2.05s; }
.rocket-node circle{ filter: drop-shadow(0 0 10px rgba(232,163,61,0.9)); }

@keyframes draw{ to{ stroke-dashoffset: 0; } }
@keyframes pop{ to{ opacity: 1; } }

/* ---------- trust strip ---------- */
.trust-strip{
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-row p{
  color: var(--text-faint);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head{
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head h2{
  font-size: clamp(30px, 3.6vw, 42px);
  color: var(--ink-3);
}
.section-head p{
  margin-top: 16px;
  font-size: 17px;
  color: rgba(10,20,31,0.66);
}
.why .section-head p, .why .section-head h2{ color: var(--cream); }
.why .section-head p{ color: var(--text-soft); }

/* ============================================================
   ABOUT
   ============================================================ */
.about{
  padding: 120px 0;
  background: var(--cream);
}
.about-grid{
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
  align-items: center;
}
.about-logo{
  width: 100%;
  max-width: 320px;
  border-radius: 50%;
}
.about-copy h2{
  font-size: clamp(30px, 3.6vw, 44px);
  max-width: 16ch;
}
.about-copy p{
  margin-top: 22px;
  font-size: 17px;
  color: rgba(10,20,31,0.68);
  max-width: 62ch;
}
.about-facts{
  display: flex;
  gap: 44px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(10,20,31,0.14);
  flex-wrap: wrap;
}
.about-fact-num{
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-dim);
}
.about-fact-label{
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: rgba(10,20,31,0.6);
  max-width: 18ch;
}

/* ---------- industries ---------- */
.industries{
  padding: 90px 0 120px;
  background: var(--cream);
}
.industry-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-grid li{
  border: 1px solid rgba(10,20,31,0.16);
  border-radius: 4px;
  padding: 22px 20px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink-3);
  transition: border-color .15s ease, background-color .15s ease;
}
.industry-grid li:hover{
  border-color: var(--gold);
  background: rgba(232,163,61,0.06);
}

/* ============================================================
   SERVICES — staircase layout
   ============================================================ */
.services{ padding: 120px 0; background: var(--cream); }

.staircase{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: end;
}
.stair-item{
  --lift: calc(var(--s) * 34px);
  margin-bottom: var(--lift);
  padding-top: 26px;
  border-top: 1px solid rgba(10,20,31,0.16);
}
.stair-item:nth-child(4){ --lift: 102px; }
.stair-line{
  height: 3px;
  width: 46px;
  background: var(--gold);
  margin-bottom: 18px;
}
.stair-item h3{
  font-size: 20px;
  margin-bottom: 14px;
}
.stair-item li{
  font-size: 15px;
  color: rgba(10,20,31,0.72);
  padding: 7px 0;
  border-bottom: 1px dashed rgba(10,20,31,0.14);
}
.stair-item li:last-child{ border-bottom: none; }

/* ============================================================
   WHY US
   ============================================================ */
.why{
  background: var(--ink);
  padding: 120px 0;
}
.stat-row{
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
}
.stat{
  flex: 1;
  padding: 34px 30px 0 0;
  border-right: 1px solid var(--line);
}
.stat:last-child{ border-right: none; }
.stat-num{
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--gold);
  font-weight: 600;
}
.stat-label{
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 15px;
  max-width: 22ch;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process{ padding: 120px 0; background: var(--cream); }
.process-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}
.process-list li{
  display: flex;
  gap: 20px;
}
.process-index{
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold-dim);
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}
.process-list h3{
  font-size: 19px;
  margin-bottom: 8px;
}
.process-list p{
  color: rgba(10,20,31,0.66);
  font-size: 15.5px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{ padding: 120px 0; background: var(--ink-2); color: var(--cream); }
.testimonials .section-head h2{ color: var(--cream); }
.testimonials .section-head p{ color: var(--text-soft); }
.testimonial-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial{
  margin: 0;
  padding: 30px 0 0;
  border-top: 2px solid var(--gold);
}
.testimonial blockquote{
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--cream);
}
.testimonial figcaption{
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-faint);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq{ padding: 120px 0; background: var(--cream); }
.faq-grid{
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
}
.faq-head{ margin-bottom: 0; }
.faq-list{ display: grid; gap: 4px; }
.faq-list details{
  border-bottom: 1px solid rgba(10,20,31,0.16);
  padding: 22px 0;
}
.faq-list summary{
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-3);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker{ display: none; }
.faq-list summary::after{
  content: "+";
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-dim);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after{ content: "−"; }
.faq-list details p{
  margin-top: 14px;
  font-size: 15.5px;
  color: rgba(10,20,31,0.68);
  max-width: 62ch;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  background: var(--gold);
  padding: 64px 0;
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 94%);
}
.cta-band-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2{
  color: var(--ink-3);
  font-size: clamp(24px, 3vw, 34px);
  max-width: 20ch;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact{ padding: 130px 0 120px; background: var(--ink-3); color: var(--cream); }
.contact-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.contact-info h2{ font-size: clamp(28px,3.4vw,38px); }
.contact-info > p{ margin-top: 16px; color: var(--text-soft); font-size: 16px; max-width: 40ch; }

.info-list{ margin-top: 44px; display: grid; gap: 24px; }
.info-list dt{
  font-size: 12.5px;
  text-transform: none;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.info-list dd{
  margin: 0;
  font-size: 16.5px;
  font-family: var(--font-display);
}
.info-list dd a:hover{ color: var(--gold); }

.lead-form{
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px;
}
.form-row{ margin-bottom: 20px; }
.form-row.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.form-row.two-col > div{ margin-bottom: 20px; }
label{
  display: block;
  font-size: 13.5px;
  color: var(--text-soft);
  margin-bottom: 8px;
}
input, select, textarea{
  width: 100%;
  background: var(--ink-3);
  border: 1px solid var(--line-strong);
  color: var(--cream);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
}
input:focus, select:focus, textarea:focus{
  border-color: var(--gold);
}
textarea{ resize: vertical; }
.form-status{
  margin-top: 14px;
  font-size: 14px;
  min-height: 20px;
  color: var(--gold);
}
.form-status.error{ color: #e5877a; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: var(--ink-3);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--cream);
}
.footer-nav{ display: flex; gap: 22px; }
.footer-nav a{ color: var(--text-soft); font-size: 14px; }
.footer-nav a:hover{ color: var(--gold); }
.footer-copy{ color: var(--text-faint); font-size: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Large desktop / very wide monitors: keep line lengths and visuals in check */
@media (min-width: 1600px){
  :root{ --wrap: 1440px; }
  body{ font-size: 17px; }
}

@media (max-width: 1180px){
  .main-nav{ gap: 20px; }
  .about-grid{ grid-template-columns: 0.7fr 1.3fr; gap: 46px; }
}

@media (max-width: 940px){
  .staircase{ grid-template-columns: repeat(2, 1fr); }
  .stair-item, .stair-item:nth-child(4){ --lift: 0px; margin-bottom: 0; }
  .process-list{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; gap: 50px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; max-width: 320px; margin: 0 auto 20px; }
  .about-grid{ grid-template-columns: 1fr; text-align: left; gap: 36px; }
  .about-logo{ max-width: 180px; }
  .about-copy h2{ max-width: none; }
  .industry-grid{ grid-template-columns: repeat(2, 1fr); }
  .testimonial-row{ grid-template-columns: 1fr; gap: 40px; }
  .faq-grid{ grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 720px){
  .main-nav{
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 20px 28px;
    border-bottom: 1px solid var(--line);
    display: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .main-nav.open{ display: flex; }
  .main-nav a{ padding: 12px 0; border-bottom: 1px solid var(--line); }
  .header-cta{ display: none; }
  .nav-toggle{ display: flex; }
  .staircase{ grid-template-columns: 1fr; }
  .stat-row{ flex-direction: column; }
  .stat{ border-right: none; border-bottom: 1px solid var(--line); padding: 24px 0; }
  .stat:last-child{ border-bottom: none; }
  .form-row.two-col{ grid-template-columns: 1fr; }
  .cta-band-inner{ flex-direction: column; align-items: flex-start; }
  .industry-grid{ grid-template-columns: 1fr 1fr; }
  .about-facts{ gap: 28px; }
  .hero{ padding: 110px 0 50px; }
  .lead-form{ padding: 26px; }
}

@media (max-width: 480px){
  .wrap{ padding: 0 20px; }
  .industry-grid{ grid-template-columns: 1fr; }
  h1.ascend{ font-size: clamp(38px, 12vw, 56px); }
  .brand-text{ font-size: 15px; }
  .header-row{ gap: 16px; }
}
