/* ============================================================
   Ana Carolina · Ecco Studio — design system
   ============================================================ */

:root {
  --bg: #FFFFFF;
  --surface: #F7F7F4;
  --ink: #1B1B19;
  --ink-2: #3A3A36;
  --ink-soft: #74746D;
  --line: rgba(27, 27, 25, 0.10);
  --line-2: rgba(27, 27, 25, 0.16);

  --dark: #232322;
  --dark-2: #2C2C2A;
  --on-dark: #FFFFFF;
  --on-dark-soft: rgba(255, 255, 255, 0.62);
  --line-dark: rgba(255, 255, 255, 0.14);

  --lime: #CCFF00;
  --ecco-dark: #5C7302;
  --ecco-mid: #9CC400;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 84px;
  --pad-x: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 500;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--lime); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--ecco-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */

.display {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
.display em { font-style: normal; color: var(--ecco-dark); }
.band-dark .display em { color: var(--lime); }

.display-xl { font-size: clamp(38px, 6vw, 78px); }
.display-lg {
  font-size: clamp(30px, 4.4vw, 56px);
  max-width: 16ch;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.lede {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 28px 0 0;
  font-weight: 500;
}
.band-dark .lede { color: var(--on-dark-soft); }

.body-lg {
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 54ch;
  margin: 0 0 20px;
}
.body-lg:last-child { margin-bottom: 0; }

.mark-text {
  color: var(--ink);
  font-weight: 700;
  background: linear-gradient(transparent 62%, var(--lime) 62%);
  padding: 0 2px;
}

/* Word-split reveal */
.word { display: inline-block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.word-i {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 820ms var(--ease);
}
[data-reveal].is-in .word-i,
.is-in .word-i { transform: none; }

/* ---------- Scroll progress ---------- */

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 120;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--ecco-dark), var(--ecco-mid), var(--lime));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* ---------- Brand mark ---------- */

.mark { width: 34px; height: 34px; flex: none; transition: transform 620ms var(--ease); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand:hover .mark { transform: rotate(-130deg); }
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -0.03em; white-space: nowrap; }

.brand-lg .mark { width: 52px; height: 52px; }
.brand-lg .brand-name { font-size: clamp(24px, 3vw, 34px); }
.brand-sm .mark { width: 26px; height: 26px; }
.brand-sm .brand-name { font-size: 16px; }

/* ---------- Header ---------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 400ms var(--ease), box-shadow 400ms var(--ease), color 400ms var(--ease);
}
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity 400ms var(--ease);
  z-index: -1;
}
.header.is-stuck::after { opacity: 1; }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: padding 400ms var(--ease);
}
.header.is-stuck .header-inner { padding-top: 13px; padding-bottom: 13px; }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 260ms var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 420ms var(--ease);
}
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: 0 50%; }

/* Header over a dark section */
.header.on-dark { color: var(--on-dark); }
.header.on-dark::after { background: rgba(35, 35, 34, 0.78); border-bottom-color: var(--line-dark); }
.header.on-dark .nav-link { color: var(--on-dark-soft); }
.header.on-dark .nav-link:hover, .header.on-dark .nav-link.is-active { color: #fff; }
.header.on-dark .btn-pill { background: var(--lime); color: var(--ink); }

/* ---------- Buttons ---------- */

.btn {
  --mag-x: 0px;
  --mag-y: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
  transition: transform 380ms var(--ease), background 320ms var(--ease),
              color 320ms var(--ease), border-color 320ms var(--ease), box-shadow 380ms var(--ease);
}
.btn:active { transform: translate3d(var(--mag-x), var(--mag-y), 0) scale(0.97); }

.btn-pill { background: var(--ink); color: #fff; padding: 14px 26px; }
.btn-pill:hover { background: var(--ecco-dark); }
.btn-pill.is-current { background: var(--lime); color: var(--ink); }

.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.5), 0 10px 30px -12px rgba(204, 255, 0, 0.8);
}
.btn-lime:hover { box-shadow: 0 0 34px -2px rgba(204, 255, 0, 0.65), 0 10px 34px -10px rgba(204, 255, 0, 0.9); }

.btn-ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }

.btn-ghost-dark { border-color: var(--line-dark); color: #fff; background: transparent; }
.btn-ghost-dark:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }

.btn-outline { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn-block { display: flex; width: 100%; }

.row-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 40px; }
.row-actions.center { justify-content: center; }

/* ---------- Bands ---------- */

.band { padding: clamp(72px, 9vw, 140px) 0; position: relative; }
.band-surface { background: var(--surface); }
.band-dark { background: var(--dark); color: var(--on-dark); }
.band-dark .display { color: #fff; }

/* ---------- Hero ---------- */

.hero, .page-head {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(72px, 10vw, 132px);
  overflow: hidden;
  isolation: isolate;
}
.hero { min-height: min(100svh, 900px); display: flex; align-items: center; }

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.hero::after, .page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 12% 30%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0) 78%);
}

.hero-inner, .page-head-inner { position: relative; }
.hero-copy { max-width: 62ch; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-meta li { display: flex; align-items: center; gap: 10px; }
.hero-meta li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.28);
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 1px;
  height: 54px;
  background: var(--line-2);
  overflow: hidden;
}
.hero-scroll-cue span {
  display: block;
  width: 100%;
  height: 40%;
  background: var(--ecco-dark);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(250%); }
}

.page-head { min-height: 44svh; display: flex; align-items: flex-end; }

/* ---------- Feature cards ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 16px;
}

.feature {
  --gx: 50%;
  --gy: 0%;
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px 32px;
  overflow: hidden;
  transition: transform 520ms var(--ease), border-color 420ms var(--ease), box-shadow 520ms var(--ease);
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--gx) var(--gy), rgba(204, 255, 0, 0.20), transparent 68%);
  opacity: 0;
  transition: opacity 420ms var(--ease);
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  box-shadow: 0 24px 50px -30px rgba(27, 27, 25, 0.45);
}
.feature:hover::before { opacity: 1; }

.feature-mark {
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  transition: transform 700ms var(--ease);
}
.feature:hover .feature-mark { transform: rotate(-160deg) scale(1.12); }

.feature h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 8px; }
.feature p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.photo-frame {
  --rx: 0deg;
  --ry: 0deg;
  max-width: 440px;
  perspective: 900px;
}
.photo-slot {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: linear-gradient(150deg, var(--surface), #ECECE6);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 260ms var(--ease);
  transform-style: preserve-3d;
}
.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(24px) scale(1.02);
}

/* ---------- Purpose (dark) ---------- */

.purpose { max-width: 1080px; }
.purpose .display-xl { max-width: 14ch; }
.purpose .lede { margin-top: 32px; }

/* ---------- Timeline ---------- */

.timeline { --tl: 0; position: relative; }

.timeline-track {
  position: absolute;
  top: 29px;
  left: 30px;
  right: 0;
  height: 1.5px;
  background: var(--line-2);
}
.timeline-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--ecco-dark), var(--ecco-mid) 45%, var(--lime));
  transform: scaleX(var(--tl));
  transform-origin: 0 50%;
}

.timeline-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.tl-step { position: relative; }

.tl-node {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 26px;
  transition: background 520ms var(--ease), color 520ms var(--ease),
              border-color 520ms var(--ease), box-shadow 620ms var(--ease), transform 520ms var(--ease);
}
.tl-step.is-on .tl-node {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  transform: scale(1.06);
  box-shadow: 0 0 0 8px rgba(204, 255, 0, 0.22), 0 0 34px 2px rgba(204, 255, 0, 0.55);
}

.tl-step h3 {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  transition: color 420ms var(--ease);
}
.tl-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 26ch;
}

.timeline-note {
  margin: clamp(44px, 5vw, 72px) 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- Teaser ---------- */

.teaser {
  --gx: 50%;
  --gy: 50%;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--on-dark);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px 48px;
  align-items: center;
}
.teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--gx) var(--gy), rgba(204, 255, 0, 0.16), transparent 70%);
  pointer-events: none;
}
.teaser > * { position: relative; }
.teaser .display-lg { color: #fff; margin-bottom: 18px; max-width: 14ch; }
.teaser .body-lg { color: var(--on-dark-soft); }
.teaser .btn { justify-self: end; }

/* ---------- FAQ ---------- */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.faq-grid .display-lg { margin-bottom: 0; }

.faq-item { border-bottom: 1px solid var(--line-2); }

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 300ms var(--ease);
}
.faq-q:hover { color: var(--ecco-dark); }

.faq-sign {
  position: relative;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  transition: background 380ms var(--ease), border-color 380ms var(--ease), transform 480ms var(--ease);
}
.faq-sign::before, .faq-sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1.8px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 480ms var(--ease), opacity 380ms var(--ease);
}
.faq-sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-sign { background: var(--lime); border-color: var(--lime); transform: rotate(180deg); }
.faq-item.is-open .faq-sign::after { opacity: 0; transform: translate(-50%, -50%) rotate(0deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 520ms var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p {
  margin: 0;
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 54ch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms var(--ease) 90ms, transform 420ms var(--ease) 90ms;
}
.faq-item.is-open .faq-a p { opacity: 1; transform: none; }

/* ---------- CTA ---------- */

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(44px, 5vw, 80px);
  align-items: center;
}
.cta .display-xl { max-width: 14ch; }

.cta-mark {
  width: 62px;
  height: 62px;
  margin-bottom: 34px;
  animation: float 7s ease-in-out infinite;
}

/* ---------- Lead form ---------- */

.lead-form {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  padding: clamp(26px, 3.2vw, 40px);
  display: grid;
  gap: 22px;
}

.lead-form-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}

.field { display: grid; gap: 8px; }

.field label {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.4;
}

.field-optional {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 4px;
  vertical-align: 1px;
}

.field-hint {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--on-dark-soft);
  margin: -2px 0 2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--line-dark);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 112px; line-height: 1.55; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.34); }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(255, 255, 255, 0.28); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(204, 255, 0, 0.16);
}

/* Native dropdown list is OS-painted — keep it readable. */
.field select option { color: #1B1B19; background: #fff; }
.field select:invalid { color: rgba(255, 255, 255, 0.34); }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(45deg);
  pointer-events: none;
}
.select-wrap select { padding-right: 44px; cursor: pointer; }

.field-error {
  font-size: 12.5px;
  font-weight: 600;
  color: #FF8A8A;
  margin: 0;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #FF8A8A; }
.field.has-error .field-error { display: block; }

.form-status {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--lime);
  display: none;
}
.form-status.is-shown { display: block; }
.form-status.is-error { color: #FF8A8A; }

.form-note {
  margin: -6px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(12deg); }
}

/* ---------- Plans page ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.plan {
  --gx: 50%;
  --gy: 0%;
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(30px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 320ms var(--ease), box-shadow 520ms var(--ease), border-color 420ms var(--ease);
}
.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--gx) var(--gy), rgba(204, 255, 0, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 420ms var(--ease);
  pointer-events: none;
}
.plan:hover::before { opacity: 1; }
.plan:hover { box-shadow: 0 30px 60px -34px rgba(27, 27, 25, 0.5); border-color: var(--line-2); }
.plan > * { position: relative; }

.plan-featured {
  border-color: var(--ecco-mid);
  box-shadow: 0 0 0 4px rgba(204, 255, 0, 0.14);
}
.plan-featured:hover { box-shadow: 0 0 0 4px rgba(204, 255, 0, 0.2), 0 30px 60px -30px rgba(92, 115, 2, 0.45); }

.plan-head h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.035em; margin: 0 0 10px; }
.plan-head p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

.plan-price {
  font-size: clamp(38px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1;
}
.plan-currency { font-size: 0.46em; font-weight: 700; color: var(--ink-soft); margin-right: 6px; vertical-align: 0.42em; }

.plan-deadline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: -8px 0 0;
}

.plan-list {
  list-style: none;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.plan-list li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; }
.plan-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.25);
  margin-top: 6px;
}
.plan .btn { margin-top: auto; }

.plans-note {
  margin: 36px 0 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.plans-note a { color: var(--ecco-dark); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Hire cards ---------- */

.hire {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 20px;
}

.hire-card {
  --gx: 50%;
  --gy: 0%;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 30px 36px;
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease), border-color 420ms var(--ease);
}
.hire-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(260px circle at var(--gx) var(--gy), rgba(204, 255, 0, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 420ms var(--ease);
  pointer-events: none;
}
.hire-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 26px 54px -32px rgba(27, 27, 25, 0.45); }
.hire-card:hover::before { opacity: 1; }
.hire-card > * { position: relative; }

.hire-step {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.hire-card h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.03em; margin: 0 0 12px; }
.hire-value { font-size: 38px; font-weight: 800; letter-spacing: -0.04em; margin: 0 0 18px; line-height: 1; }
.hire-dash { width: 34px; height: 5px; background: var(--ink); border-radius: 3px; margin-bottom: 30px; }
.hire-text { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

.commitment {
  margin-top: 20px;
  background: var(--surface);
  border-left: 4px solid var(--lime);
  border-radius: 0 22px 22px 0;
  padding: clamp(28px, 3.4vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px 48px;
  align-items: start;
}
.commitment h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.03em; margin: 0; max-width: 20ch; }
.commitment p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* ---------- Post-support maintenance ---------- */

.maint-lede { margin-top: 20px; margin-bottom: clamp(40px, 5vw, 64px); }

.maint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.maint-card {
  --gx: 50%;
  --gy: 0%;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease), border-color 420ms var(--ease);
}
.maint-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--gx) var(--gy), rgba(204, 255, 0, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 420ms var(--ease);
  pointer-events: none;
}
.maint-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 26px 54px -32px rgba(27, 27, 25, 0.45); }
.maint-card:hover::before { opacity: 1; }
.maint-card > * { position: relative; }

.maint-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ecco-dark);
  margin: 0;
}
.maint-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; margin: 0; }
.maint-desc { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

.maint-price { margin: 4px 0; }
.maint-period { font-size: 0.34em; font-weight: 700; color: var(--ink-soft); margin-left: 4px; }

.maint-table {
  list-style: none;
  margin: auto 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.maint-table li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.maint-table strong { font-weight: 800; color: var(--ink); white-space: nowrap; }

/* ---------- Footer ---------- */

.footer { background: var(--dark); color: var(--on-dark); padding: clamp(40px, 5vw, 56px) 0 32px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
  justify-content: space-between;
}
.footer-contact { display: flex; flex-wrap: wrap; gap: 8px 32px; font-size: 14.5px; font-weight: 500; }
.footer-contact a { color: var(--on-dark-soft); transition: color 260ms var(--ease); }
.footer-contact a:hover { color: var(--lime); }
.footer-copy { font-size: 13px; color: rgba(255, 255, 255, 0.42); margin: 0; }

/* ---------- Reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
[data-stagger].is-in > * { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .timeline-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .timeline-track { display: none; }
  .tl-node { margin-bottom: 18px; }
}

@media (max-width: 860px) {
  /* Single-row header: the section links live in the footer nav at this size,
     so the bar stays one predictable height and --header-h stays accurate. */
  :root { --header-h: 72px; }
  .nav { display: none; }
  .header-inner { padding-top: 15px; padding-bottom: 15px; }
  .header.is-stuck .header-inner { padding-top: 11px; padding-bottom: 11px; }
  .brand-name { font-size: 17px; }
  .btn-pill { margin-left: auto; padding: 12px 22px; font-size: 14px; }
  .teaser .btn { justify-self: start; }
  .hero-scroll-cue { display: none; }
}

@media (max-width: 620px) {
  /* Mark alone in the bar — the wordmark would crowd the CTA at this width. */
  .header .brand-name { display: none; }
  .timeline-steps { grid-template-columns: 1fr; gap: 32px; }
  .tl-step { padding-left: 76px; }
  .tl-node { position: absolute; left: 0; top: 0; margin: 0; }
  .tl-step p { max-width: none; }
  .row-actions { flex-direction: column; align-items: stretch; }
  .row-actions .btn { width: 100%; }
  /* 16px keeps iOS Safari from zooming in when a field takes focus. */
  .field input, .field select, .field textarea { font-size: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .display-lg { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .word-i { transform: none !important; }
}
