:root {
  --ink: #09191c;
  --ink-2: #102a2f;
  --ink-3: #1b383d;
  --paper: #eef2ee;
  --paper-2: #e3eae4;
  --white: #f8fbf8;
  --muted: #53686b;
  --muted-dark: #a9c0bc;
  --line: #c8d5d0;
  --line-dark: rgba(206, 232, 224, 0.19);
  --cyan: #13b9c9;
  --cyan-dark: #006f7d;
  --cyan-soft: #b9edf0;
  --lime: #c4f26a;
  --lime-dark: #557b18;
  --max-width: 1240px;
  --header-height: 76px;
  --radius: 4px;
  color: var(--ink);
  background: var(--paper);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 64px), var(--max-width)); margin: 0 auto; }
main > section, footer, [id] { scroll-margin-top: calc(var(--header-height) + 22px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header { position: fixed; z-index: 20; top: 0; right: 0; left: 0; color: var(--white); background: rgba(9, 25, 28, 0.9); border-bottom: 1px solid transparent; backdrop-filter: blur(12px); transition: background 180ms ease, border-color 180ms ease; }
.site-header.is-sticky { background: rgba(9, 25, 28, 0.97); border-color: var(--line-dark); }
.nav-wrap { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: block; width: 184px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; filter: drop-shadow(0 0 14px rgba(19, 185, 201, 0.15)); }
.main-nav { display: flex; align-items: center; gap: 29px; font-size: 0.77rem; color: rgba(248, 251, 248, 0.75); }
.main-nav a { position: relative; display: inline-flex; min-height: 44px; align-items: center; transition: color 160ms ease; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: 7px; left: 0; height: 1px; background: var(--lime); transform: scaleX(0); transform-origin: right; transition: transform 160ms ease; }
.main-nav a:not(.nav-cta):hover, .main-nav a:not(.nav-cta):focus-visible { color: var(--white); }
.main-nav a:not(.nav-cta):hover::after, .main-nav a:not(.nav-cta):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; gap: 13px; align-items: center; padding: 0 17px; border: 1px solid rgba(196, 242, 106, 0.8); color: var(--lime); }
.nav-cta:hover, .nav-cta:focus-visible { color: var(--ink); background: var(--lime); }
.nav-cta span { font-size: 1.1rem; line-height: 1; }
.menu-toggle { display: none; position: relative; width: 48px; height: 44px; padding: 0; border: 1px solid var(--line-dark); background: transparent; cursor: pointer; }
.menu-toggle > span:not(.menu-label) { position: absolute; right: 12px; width: 22px; height: 1px; background: var(--white); transition: transform 160ms ease, top 160ms ease; }
.menu-toggle > span:nth-of-type(2) { top: 17px; }
.menu-toggle > span:nth-of-type(3) { top: 25px; }
.menu-toggle.is-open > span:nth-of-type(2) { top: 21px; transform: rotate(45deg); }
.menu-toggle.is-open > span:nth-of-type(3) { top: 21px; transform: rotate(-45deg); }
.menu-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.section-dark { color: var(--white); background: var(--ink); }
.section-light { background: var(--paper); }
.section-paper { background: var(--paper-2); }
.eyebrow, .section-kicker, .route-kicker, .panel-kicker, .offer-label, .form-heading, .step-top { font-size: 0.67rem; line-height: 1.3; letter-spacing: 0.035em; }
.eyebrow { display: inline-flex; gap: 10px; align-items: center; margin: 0; color: var(--cyan-soft); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(196, 242, 106, 0.13); }
.section-kicker { margin: 0 0 25px; color: var(--cyan-dark); }
.section-kicker::after { content: ""; display: block; width: 36px; height: 1px; margin-top: 10px; background: currentColor; }
.section-kicker-dark { color: var(--lime); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; font-weight: 500; }
h1 { max-width: 760px; margin-bottom: 0; font-size: clamp(3.5rem, 7.2vw, 6.8rem); letter-spacing: -0.085em; line-height: 0.94; }
h2 { margin-bottom: 0; font-size: clamp(2.7rem, 5.2vw, 5.3rem); letter-spacing: -0.08em; line-height: 0.97; }
h3 { letter-spacing: -0.055em; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 18px; padding: 0 19px; border: 1px solid transparent; border-radius: var(--radius); font-size: 0.79rem; font-weight: 600; cursor: pointer; transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary:hover, .button-primary:focus-visible { background: #d9ff91; }
.button-lime { color: var(--ink); background: var(--lime); }
.button-lime:hover, .button-lime:focus-visible { background: #d9ff91; }
.button span { font-size: 1.1rem; line-height: 1; }
.text-link, .arrow-link { display: inline-flex; min-height: 44px; align-items: center; gap: 11px; border-bottom: 1px solid currentColor; font-size: 0.78rem; }
.text-link { color: rgba(248, 251, 248, 0.78); }
.text-link:hover, .text-link:focus-visible { color: var(--lime); }
.arrow-link:hover, .arrow-link:focus-visible { color: var(--cyan-dark); }

.hero { position: relative; min-height: min(830px, 100vh); padding: calc(var(--header-height) + 92px) 0 74px; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: 0; right: 0; width: 44%; height: 100%; background: linear-gradient(90deg, transparent, rgba(19, 185, 201, 0.055)); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.93fr) minmax(430px, 1.07fr); gap: clamp(46px, 7vw, 112px); align-items: center; }
.hero-copy { max-width: 740px; }
.hero h1 { margin-top: 27px; }
.hero-lead { max-width: 555px; margin: 29px 0 0; color: rgba(248, 251, 248, 0.69); font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; margin-top: 35px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 13px 25px; margin: 56px 0 0; padding: 0; list-style: none; color: rgba(248, 251, 248, 0.63); font-size: 0.72rem; }
.hero-points li { display: inline-flex; gap: 8px; align-items: center; }
.hero-points li span { color: var(--lime); font-size: 1rem; }

.route-figure { position: relative; width: 100%; max-width: 560px; margin: 0; padding: 30px 30px 25px; border: 1px solid rgba(201, 237, 228, 0.26); background: rgba(16, 42, 47, 0.66); }
.route-figure::before { content: ""; position: absolute; top: 0; left: 28px; width: 56px; height: 2px; background: var(--lime); }
.route-figure figcaption { display: grid; gap: 8px; padding-bottom: 25px; border-bottom: 1px solid var(--line-dark); }
.route-kicker { color: var(--lime); }
.route-figure figcaption strong { font-family: "Space Grotesk", sans-serif; font-size: 1.46rem; font-weight: 500; letter-spacing: -0.05em; }
.route-figure figcaption > span:last-child { max-width: 320px; color: var(--muted-dark); font-size: 0.75rem; line-height: 1.45; }
.signal-rail { position: relative; padding: 29px 0 18px; }
.rail-track { position: absolute; top: 50px; bottom: 50px; left: 18px; width: 1px; background: linear-gradient(var(--lime), var(--cyan)); }
.rail-stops { position: relative; display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.rail-stop { display: grid; grid-template-columns: 37px 1fr; gap: 15px; align-items: start; }
.rail-node { position: relative; z-index: 1; display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid var(--lime); border-radius: 50%; color: var(--lime); background: var(--ink-2); font-size: 0.62rem; }
.rail-stop strong, .rail-stop small { display: block; }
.rail-stop strong { margin-top: 2px; font-family: "Space Grotesk", sans-serif; font-size: 0.96rem; font-weight: 500; letter-spacing: -0.02em; }
.rail-stop small { max-width: 340px; margin-top: 4px; color: var(--muted-dark); font-size: 0.72rem; line-height: 1.4; }
.route-caption { display: flex; gap: 9px; align-items: center; padding-top: 18px; border-top: 1px solid var(--line-dark); color: var(--muted-dark); font-size: 0.66rem; }
.route-status { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }

.context { padding: 135px 0 125px; }
.context-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(55px, 10vw, 135px); align-items: start; }
.context h2 { max-width: 620px; }
.large-copy { max-width: 540px; margin: 56px 0 25px; font-size: clamp(1.25rem, 2.1vw, 1.58rem); letter-spacing: -0.035em; line-height: 1.27; }
.muted-copy { max-width: 500px; margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.68; }
.issue-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 100px; border-top: 1px solid var(--line); }
.issue-item { display: grid; grid-template-columns: 26px 1fr; gap: 13px; padding: 25px 25px 0 0; border-right: 1px solid var(--line); }
.issue-item + .issue-item { padding-left: 25px; }
.issue-item:last-child { border-right: 0; }
.issue-mark { color: var(--cyan-dark); font-size: 1.2rem; line-height: 1; }
.issue-item h3 { margin: 0; font-size: 1.08rem; font-weight: 600; }
.issue-item p { margin: 9px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.52; }

.solutions { padding: 122px 0 135px; }
.section-heading-row { display: flex; justify-content: space-between; gap: 70px; align-items: end; }
.section-heading-row h2 { max-width: 670px; }
.heading-aside { max-width: 315px; margin: 0 0 7px; color: var(--muted); font-size: 0.91rem; line-height: 1.6; }
.offer-layout { display: grid; grid-template-columns: 0.77fr 1.23fr; gap: clamp(55px, 10vw, 138px); align-items: start; margin-top: 75px; }
.offer-intro { max-width: 350px; }
.offer-rule { display: flex; gap: 6px; align-items: center; margin-bottom: 29px; }
.offer-rule span { display: block; width: 26px; height: 4px; background: var(--ink); }
.offer-rule span:nth-child(2) { width: 48px; background: var(--cyan); }
.offer-rule span:nth-child(3) { width: 12px; background: var(--lime-dark); }
.offer-label { margin-bottom: 18px; color: var(--cyan-dark); }
.offer-intro h3 { max-width: 330px; margin: 0 0 18px; font-size: clamp(1.8rem, 3vw, 2.55rem); line-height: 1.02; }
.offer-intro > p:not(.offer-label) { max-width: 320px; margin-bottom: 29px; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.solution-list { border-top: 1px solid var(--line); }
.solution-disclosure { border-bottom: 1px solid var(--line); }
.solution-item { display: grid; grid-template-columns: 37px 1fr 36px; gap: 14px; width: 100%; min-height: 88px; align-items: center; padding: 17px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.solution-item:hover, .solution-item:focus-visible { background: rgba(255, 255, 255, 0.26); }
.offer-number { color: var(--cyan-dark); font-size: 0.69rem; font-weight: 600; }
.solution-text strong, .solution-text small { display: block; }
.solution-text strong { font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; font-weight: 600; letter-spacing: -0.035em; }
.solution-text small { margin-top: 6px; color: var(--muted); font-size: 0.77rem; line-height: 1.45; }
.solution-toggle { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 1.1rem; line-height: 1; transition: transform 160ms ease, color 160ms ease, background 160ms ease; }
.solution-item.active .solution-toggle { color: var(--paper); background: var(--ink); transform: rotate(45deg); }
.solution-detail { padding: 0 50px 20px; color: var(--muted); font-size: 0.79rem; line-height: 1.55; }
.solution-detail p { max-width: 570px; margin: 0; }
.solution-detail[hidden] { display: none; }

.autonomy { padding: 130px 0 139px; }
.autonomy-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr); gap: clamp(65px, 13vw, 175px); align-items: center; }
.autonomy h2 { max-width: 580px; }
.autonomy-lead { max-width: 500px; margin: 29px 0 0; color: rgba(248, 251, 248, 0.68); font-size: 1.05rem; line-height: 1.62; }
.autonomy-points { margin: 48px 0 0; padding: 0; list-style: none; }
.autonomy-points li { display: grid; gap: 5px; max-width: 500px; padding: 16px 0; border-top: 1px solid var(--line-dark); }
.autonomy-points li:last-child { border-bottom: 1px solid var(--line-dark); }
.autonomy-points strong { color: var(--white); font-size: 0.91rem; font-weight: 500; }
.autonomy-points span { color: rgba(248, 251, 248, 0.59); font-size: 0.77rem; line-height: 1.45; }
.responsibility-panel { padding: 30px 32px 34px; border: 1px solid rgba(201, 237, 228, 0.34); background: var(--ink-2); }
.responsibility-panel::before { content: ""; display: block; width: 48px; height: 3px; margin-bottom: 32px; background: var(--lime); }
.panel-kicker { margin-bottom: 19px; color: var(--lime); }
.responsibility-panel h3 { max-width: 320px; margin-bottom: 27px; font-size: clamp(1.65rem, 2.7vw, 2.3rem); line-height: 1.03; }
.responsibility-panel ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.responsibility-panel li { padding: 13px 0; border-bottom: 1px solid var(--line-dark); color: var(--muted-dark); font-size: 0.78rem; }

.method { padding: 122px 0 133px; }
.method-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 71px; border-top: 1px solid var(--line); }
.method-step { padding: 25px 33px 0 0; border-right: 1px solid var(--line); }
.method-step + .method-step { padding-left: 33px; }
.method-step:last-child { border-right: 0; }
.step-top { display: flex; gap: 13px; align-items: center; color: var(--cyan-dark); }
.step-line { display: block; width: 43px; height: 1px; background: currentColor; }
.method-step h3 { max-width: 230px; margin: 28px 0 15px; font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.04; }
.method-step p { max-width: 265px; margin: 0; color: var(--muted); font-size: 0.81rem; line-height: 1.57; }

.audience { padding: 121px 0 128px; }
.audience-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); gap: clamp(60px, 13vw, 175px); align-items: start; }
.audience-intro h2 { max-width: 510px; }
.audience-intro > p:last-child { max-width: 425px; margin: 28px 0 0; color: var(--muted); font-size: 0.94rem; line-height: 1.62; }
.audience-roles { border-top: 1px solid var(--line); }
.role-row { display: grid; grid-template-columns: 32px 1.05fr 1fr; gap: 14px; align-items: center; min-height: 65px; border-bottom: 1px solid var(--line); font-size: 0.82rem; }
.role-symbol { color: var(--cyan-dark); font-size: 1.1rem; }
.role-row strong { font-weight: 600; }
.role-row > span:last-child { color: var(--muted); font-size: 0.73rem; }
.role-footnote { margin: 20px 0 0; color: var(--muted); font-size: 0.68rem; line-height: 1.5; }

.faq { padding: 122px 0 132px; }
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(65px, 12vw, 165px); align-items: start; }
.faq h2 { max-width: 500px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 25px; padding: 15px 0; list-style: none; cursor: pointer; font-family: "Space Grotesk", sans-serif; font-size: 0.98rem; font-weight: 500; letter-spacing: -0.03em; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: "IBM Plex Sans", sans-serif; font-size: 1rem; font-weight: 400; transition: transform 160ms ease, color 160ms ease, background 160ms ease; }
details[open] summary::after { color: var(--paper); background: var(--ink); transform: rotate(45deg); }
details p { max-width: 640px; margin: -2px 50px 22px 0; color: var(--muted); font-size: 0.81rem; line-height: 1.58; }

.contact { padding: 125px 0 132px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.8fr); gap: clamp(65px, 13vw, 175px); align-items: start; }
.contact h2 { max-width: 590px; }
.contact-copy > p:nth-of-type(2) { max-width: 470px; margin: 28px 0 0; color: rgba(248, 251, 248, 0.68); font-size: 0.96rem; line-height: 1.62; }
.contact-signature { display: flex; gap: 12px; align-items: center; margin-top: 52px; color: rgba(248, 251, 248, 0.43); font-size: 0.66rem; }
.signature-line { width: 37px; height: 1px; background: var(--lime); }
.site-footer { color: rgba(248, 251, 248, 0.63); background: #061316; }
.footer-top { display: grid; grid-template-columns: 1fr 1.3fr 0.7fr; gap: 40px; align-items: center; min-height: 165px; border-bottom: 1px solid var(--line-dark); }
.footer-brand { display: block; width: 190px; }
.footer-brand img { filter: drop-shadow(0 0 14px rgba(19, 185, 201, 0.15)); }
.footer-tagline { max-width: 330px; margin: 0; font-family: "Space Grotesk", sans-serif; font-size: 0.9rem; line-height: 1.35; letter-spacing: -0.035em; }
.footer-nav { display: flex; flex-direction: column; gap: 7px; justify-self: end; font-size: 0.74rem; }
.footer-nav a { min-height: 32px; display: inline-flex; align-items: center; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 18px 0 20px; color: rgba(248, 251, 248, 0.34); font-size: 0.62rem; }

:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }

/* Hero: a live operating signal, not a decorative illustration. */
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 42%, rgba(19, 185, 201, 0.13), transparent 31%), radial-gradient(circle at 20% 88%, rgba(196, 242, 106, 0.06), transparent 26%); pointer-events: none; }
.hero-grid { position: absolute; z-index: 0; inset: 0; opacity: 0.28; background-image: linear-gradient(rgba(201, 237, 228, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 237, 228, 0.06) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, transparent, #000 28%, #000 78%, transparent); pointer-events: none; }
.hero-orbit { position: absolute; z-index: 0; width: 38vw; height: 38vw; max-width: 560px; max-height: 560px; border: 1px solid rgba(19, 185, 201, 0.12); border-radius: 50%; transform: translate(16%, -4%); pointer-events: none; }
.hero-orbit::after { content: ""; position: absolute; inset: 14%; border: 1px solid rgba(196, 242, 106, 0.08); border-radius: inherit; }
.hero-orbit-one { top: 16%; right: -10%; }
.hero-orbit-two { top: 24%; right: -18%; transform: translate(16%, -4%) rotate(32deg) scale(0.78); opacity: 0.66; }
.hero-inner, .hero-footer-line { z-index: 1; }
.hero h1 span { display: inline-block; color: var(--cyan); }
.hero-proof { display: inline-flex; gap: 11px; align-items: center; margin-top: 34px; color: rgba(248, 251, 248, 0.82); font-size: 0.72rem; }
.proof-mark { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid rgba(196, 242, 106, 0.52); color: var(--lime); font-size: 0.74rem; }
.hero-proof strong, .hero-proof small { display: block; }
.hero-proof strong { font-weight: 500; }
.hero-proof small { margin-top: 3px; color: var(--muted-dark); font-size: 0.68rem; }
.route-figure { isolation: isolate; box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2); }
.route-glow { position: absolute; z-index: -1; top: -25%; right: -12%; width: 58%; height: 55%; border-radius: 50%; background: rgba(19, 185, 201, 0.18); filter: blur(55px); pointer-events: none; }
.route-topline { display: flex; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.route-live { display: inline-flex; gap: 7px; align-items: center; color: var(--muted-dark); font-size: 0.61rem; letter-spacing: 0.04em; text-transform: lowercase; }
.route-live i, .contact-pulse i { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(196, 242, 106, 0.12); }
.route-figure figcaption { padding-bottom: 23px; }
.route-figure figcaption strong { font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
.rail-track { overflow: hidden; }
.rail-scan { position: absolute; top: -20%; left: -2px; width: 5px; height: 20%; border-radius: 99px; background: var(--white); box-shadow: 0 0 16px 3px var(--cyan); }
.rail-stop { grid-template-columns: 37px minmax(0, 1fr) auto; }
.rail-stop em { align-self: start; padding-top: 5px; color: var(--cyan-soft); font-size: 0.58rem; font-style: normal; letter-spacing: 0.03em; text-transform: lowercase; }
.rail-node { box-shadow: 0 0 0 0 rgba(196, 242, 106, 0); }
.route-caption { justify-content: space-between; }
.route-caption > span:not(.route-status) { margin-right: auto; }
.route-caption strong { color: var(--lime); font-family: "Space Grotesk", sans-serif; font-size: 0.72rem; font-weight: 500; }
.route-status { box-shadow: 0 0 0 4px rgba(196, 242, 106, 0.1); }
.hero-footer-line { position: relative; display: flex; justify-content: space-between; margin-top: 42px; padding-top: 14px; border-top: 1px solid rgba(201, 237, 228, 0.16); color: rgba(169, 192, 188, 0.65); font-size: 0.59rem; letter-spacing: 0.11em; }

.brand img, .footer-brand img { display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 1068 / 322; object-fit: contain; }

.contact-grid { grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.8fr); }
.contact-card { border: 1px solid rgba(201, 237, 228, 0.3); background: rgba(16, 42, 47, 0.72); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16); }
.contact-card-top { display: flex; gap: 15px; align-items: center; justify-content: space-between; padding: 19px 26px; border-bottom: 1px solid var(--line-dark); }
.contact-card-top .form-heading { padding: 0; border: 0; }
.contact-pulse { display: inline-flex; gap: 8px; align-items: center; color: var(--muted-dark); font-size: 0.62rem; }
.contact-card-body { padding: 30px 26px 28px; }
.contact-icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--cyan); border-radius: 50%; color: var(--cyan); font-size: 1.8rem; line-height: 1; }
.contact-card h3 { max-width: 330px; margin: 22px 0 12px; font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: 1.02; }
.contact-card-body > p { max-width: 390px; margin: 0; color: var(--muted-dark); font-size: 0.82rem; line-height: 1.6; }
.contact-card-body .button { width: 100%; margin-top: 29px; }
.contact-note { margin-top: 17px !important; color: rgba(201, 237, 228, 0.58) !important; font-size: 0.67rem !important; line-height: 1.55 !important; }
.contact-note strong { color: var(--white); font-weight: 500; }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: hero-copy-in 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }
  .route-figure { animation: hero-panel-in 900ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }
  .hero-footer-line { animation: hero-line-in 800ms 520ms ease both; }
  .hero-orbit-one { animation: orbit-drift 15s ease-in-out infinite alternate; }
  .hero-orbit-two { animation: orbit-drift 18s 1s ease-in-out infinite alternate-reverse; }
  .rail-scan { animation: rail-scan 2.8s 850ms cubic-bezier(0.65, 0, 0.35, 1) both; }
  .rail-stop { opacity: 0; animation: rail-stop-in 540ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
  .rail-stop:nth-child(1) { animation-delay: 420ms; }
  .rail-stop:nth-child(2) { animation-delay: 560ms; }
  .rail-stop:nth-child(3) { animation-delay: 700ms; }
  .rail-stop:nth-child(4) { animation-delay: 840ms; }
  .rail-node, .route-status, .route-live i, .contact-pulse i { animation: signal-pulse 2.6s ease-in-out infinite; }
  .rail-stop:nth-child(2) .rail-node { animation-delay: 350ms; }
  .rail-stop:nth-child(3) .rail-node { animation-delay: 700ms; }
  .rail-stop:nth-child(4) .rail-node { animation-delay: 1050ms; }
}

@keyframes hero-copy-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-panel-in { from { opacity: 0; transform: translate3d(24px, 12px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes hero-line-in { from { opacity: 0; transform: scaleX(0.7); transform-origin: left; } to { opacity: 1; transform: scaleX(1); transform-origin: left; } }
@keyframes orbit-drift { from { transform: translate(16%, -4%) rotate(0deg); } to { transform: translate(12%, 2%) rotate(8deg); } }
@keyframes rail-scan { 0% { top: -20%; } 100% { top: 100%; } }
@keyframes rail-stop-in { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
@keyframes signal-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(196, 242, 106, 0); } 50% { box-shadow: 0 0 0 5px rgba(196, 242, 106, 0.12); } }

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero { min-height: auto; padding-bottom: 105px; }
  .hero-copy { max-width: 800px; }
  .route-figure { max-width: 650px; justify-self: end; }
  .context-grid, .autonomy-grid, .audience-grid, .faq-grid, .contact-grid { gap: 60px; }
  .offer-layout { gap: 55px; }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 44px), var(--max-width)); }
  .nav-wrap { min-height: var(--header-height); }
  .brand { width: 168px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: var(--header-height) 0 0; display: none; height: calc(100vh - var(--header-height)); height: calc(100dvh - var(--header-height)); flex-direction: column; align-items: stretch; gap: 0; padding: 24px 22px 30px; overflow-y: auto; background: var(--ink); }
  .main-nav.is-open { display: flex; }
  .main-nav a:not(.nav-cta) { padding: 13px 0; border-bottom: 1px solid var(--line-dark); font-size: 0.98rem; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { justify-content: center; margin-top: 25px; padding: 0 16px; }
  .hero { padding-top: calc(var(--header-height) + 64px); }
  h1 { font-size: clamp(3.1rem, 10vw, 5.8rem); }
  .context, .solutions, .autonomy, .method, .audience, .faq, .contact { padding-top: 94px; padding-bottom: 98px; }
  .context-grid, .offer-layout, .autonomy-grid, .audience-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 54px; }
  .large-copy { margin-top: 12px; }
  .issue-list { margin-top: 67px; }
  .offer-layout { margin-top: 56px; }
  .offer-intro { max-width: 560px; }
  .offer-intro > p:not(.offer-label) { max-width: 500px; }
  .responsibility-panel { max-width: 580px; }
  .method-steps { margin-top: 53px; }
  .contact-copy > p:nth-of-type(2) { margin-top: 20px; }
  .contact-signature { margin-top: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 25px; padding: 32px 0; }
  .footer-tagline { grid-column: 1 / -1; grid-row: 1; justify-self: end; }
  .footer-nav { justify-self: start; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 34px), var(--max-width)); }
  .hero { padding-top: calc(var(--header-height) + 48px); padding-bottom: 67px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); letter-spacing: -0.085em; }
  .eyebrow { max-width: 310px; line-height: 1.45; }
  .hero-lead { margin-top: 23px; font-size: 0.96rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 13px; margin-top: 27px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-proof { margin-top: 28px; }
  .route-figure { padding: 23px 18px 20px; }
  .route-figure::before { left: 18px; }
  .route-figure figcaption { padding-bottom: 20px; }
  .route-figure figcaption strong { font-size: 1.28rem; }
  .route-figure figcaption > span:last-child { font-size: 0.7rem; }
  .signal-rail { padding: 22px 0 15px; }
  .rail-track { top: 43px; bottom: 43px; left: 16px; }
  .rail-stops { gap: 14px; }
  .rail-stop { grid-template-columns: 33px 1fr; gap: 11px; }
  .rail-stop em { display: none; }
  .rail-node { width: 33px; height: 33px; font-size: 0.57rem; }
  .rail-stop strong { font-size: 0.85rem; }
  .rail-stop small { font-size: 0.66rem; }
  .route-caption { font-size: 0.61rem; }
  h2 { font-size: clamp(2.55rem, 12vw, 4.1rem); }
  .issue-list { grid-template-columns: 1fr; margin-top: 51px; }
  .issue-item, .issue-item + .issue-item { min-height: 0; padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .issue-item:last-child { border-bottom: 0; }
  .section-heading-row { display: block; }
  .heading-aside { margin-top: 25px; }
  .offer-layout { gap: 43px; }
  .offer-intro h3 { font-size: 2rem; }
  .solution-item { grid-template-columns: 30px 1fr 30px; gap: 10px; min-height: 83px; }
  .solution-text strong { font-size: 0.96rem; }
  .solution-text small { font-size: 0.72rem; }
  .solution-detail { padding: 0 40px 18px; font-size: 0.75rem; }
  .method-steps { grid-template-columns: 1fr; }
  .method-step, .method-step + .method-step { padding: 21px 0 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-step:last-child { border-bottom: 0; }
  .method-step h3 { margin-top: 24px; }
  .role-row { grid-template-columns: 28px 1fr; gap: 8px; min-height: 0; padding: 14px 0; }
  .role-row > span:last-child { grid-column: 2; }
  .faq-grid { gap: 36px; }
  summary { min-height: 64px; font-size: 0.9rem; }
  details p { margin-right: 36px; }
  .contact-card-top .form-heading { gap: 12px; font-size: 0.61rem; }
  .contact-card-top { padding: 17px 18px; }
  .contact-card-body { padding: 24px 18px 22px; }
  .contact-card h3 { font-size: 2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-tagline { grid-column: auto; grid-row: auto; justify-self: start; }
  .footer-nav { justify-self: start; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}



@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; transform: none !important; }
}

/* Reference-led hero: luminous ribbons around a connected WhatsApp operation. */
.site-header { background: rgba(0, 22, 26, .8); }
.brand { width: 205px; }
.nav-cta { border-radius: 7px; min-height: 48px !important; }
.hero { background: #00161a; padding: 124px 0 0; min-height: auto; }
.hero::after { background: radial-gradient(ellipse at 80% 38%, #00717a35, transparent 53%); }
.hero-grid, .hero-orbit { display: none; }
.hero-inner { grid-template-columns: 44% 56%; gap: 0; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 26px; }
.hero .eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: .17em; gap: 20px; }
.hero h1 { font-family: 'IBM Plex Sans', sans-serif; font-size: clamp(48px, 4.65vw, 72px); font-weight: 600; line-height: 1.02; letter-spacing: -.055em; margin-top: 30px; }
.hero h1 span { color: #00c5df; display: block; }
.hero-lead { max-width: 440px; font-size: clamp(18px, 1.65vw, 23px); line-height: 1.4; margin-top: 24px; color: #acc4cf; }
.hero-actions { gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.hero-actions .button { min-height: 53px; padding: 0 22px; font-size: 15px; background: #c5ff70; border-radius: 6px; box-shadow: 0 0 28px #a3ff5410; }
.hero-actions .button:hover { box-shadow: 0 0 35px #a3ff5438; background: #d6ff9d; }
.hero-actions .text-link { font-size: 14px; gap: 16px; border-color: #41777a; }
.hero-signature { color: #a8c0ca; font-size: 14px; margin: 20px 0 0; }
.operation-visual { width: 100%; margin: -15px 0 0 0; position: relative; aspect-ratio: 760 / 630; perspective: 1100px; }
.visual-scene { position: absolute; inset: 0; transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)); transition: transform .5s ease-out; }
.flow-art { position: absolute; width: 100%; height: 100%; inset: 0; overflow: visible; }
.whatsapp-core { position: absolute; left: 38%; top: 28%; width: 30%; height: 42%; display: grid; place-items: center; border: 1.5px solid #acffff; border-radius: 14%; background: linear-gradient(135deg, #31f4ed59, #00302cdd 38%, #003932ed 75%, #1ccfdf77); box-shadow: inset 3px 3px 7px #b5ffffa6, inset -7px -5px 12px #00c9e773, 10px 8px 0 -2px #007f87, 12px 8px 0 -1px #8affffad, 0 0 45px #00d7c830; transform: rotate(-5deg) skewY(2deg); }
.whatsapp-core svg { position: relative; width: 77%; color: #e5ffd5; filter: drop-shadow(0 0 8px #91ff73) drop-shadow(0 0 24px #03f985); }
.core-halo { position: absolute; inset: 15%; background: #36ff8136; filter: blur(20px); border-radius: 50%; }
.glass-card { position: absolute; display: grid; grid-template-columns: 29% 1fr; align-content: center; align-items: center; gap: 12px; width: 29%; height: 25%; padding: 23px 21px; color: #f4fcff; border: 1px solid #a1edf0bb; border-radius: 14px; background: linear-gradient(130deg, #08708088, #00282ce8 45%, #024549bd); box-shadow: inset 1px 1px 4px #caffff88, inset -2px -2px 8px #03d7d544, 0 15px 35px #0003; backdrop-filter: blur(12px); }
.glass-card > svg { width: 100%; stroke: #42e7f1; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.glass-card strong { font-size: clamp(12px, 1.35vw, 19px); font-weight: 600; line-height: 1.3; }
.card-check { position: absolute; top: 11px; right: 11px; width: 23px; height: 23px; border-radius: 50%; display: grid; place-items: center; color: #065c27; background: #a4ff79; font-weight: 700; box-shadow: 0 0 16px #8eff7655; }
.card-lines { grid-column: 1/-1; width: 77%; height: 5px; border-radius: 5px; background: #3998a18c; position: relative; margin-top: 5px; }
.card-lines::after { content: ''; position: absolute; top: 11px; height: 5px; width: 70%; border-radius: inherit; background: inherit; }
.access-card { left: 7%; top: 7%; transform: rotate(4deg); }
.flows-card { left: 1%; top: 63%; transform: rotate(-3deg); }
.team-card { right: -1%; top: 43%; transform: rotate(-2deg); }
.visual-note { position: absolute; right: 1%; top: 22%; font-size: 9px; text-transform: uppercase; letter-spacing: .24em; line-height: 2; color: #80b5bf; }
.hero-benefits { position: relative; z-index: 2; border-block: 1px solid #215157; margin-top: 28px; background: #00131655; }
.benefits-inner { display: grid; grid-template-columns: repeat(3, 1fr); padding-block: 29px; }
.benefits-inner article { display: flex; align-items: center; gap: 28px; padding: 0 30px; border-right: 1px solid #235259; }
.benefits-inner article:first-child { padding-left: 0; }
.benefits-inner article:last-child { border: 0; padding-right: 0; }
.benefits-inner svg { flex: 0 0 47px; width: 47px; height: 47px; stroke: #bcf766; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefits-inner h2 { font: 600 17px/1.3 'IBM Plex Sans', sans-serif; letter-spacing: -.02em; margin: 0 0 5px; }
.benefits-inner p { font-size: 14px; line-height: 1.5; color: #aac3ce; margin: 0; }
@media (prefers-reduced-motion: no-preference) {
  .operation-visual { animation: scene-enter 1.2s .15s both cubic-bezier(.16,1,.3,1); }
  .whatsapp-core { animation: core-float 7s ease-in-out infinite; }
  .flow-highlight { stroke-dasharray: 14 86; animation: flow-travel 6s linear infinite; }
  .glass-card { animation: card-enter 1s both cubic-bezier(.16,1,.3,1); }
  .access-card { animation-delay: .3s; }
  .flows-card { animation-delay: .5s; }
  .team-card { animation-delay: .7s; }
}
@keyframes scene-enter { from { opacity: 0; translate: 30px 15px; } to { opacity: 1; translate: 0; } }
@keyframes card-enter { from { opacity: 0; translate: 0 20px; } to { opacity: 1; translate: 0; } }
@keyframes core-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }
@keyframes flow-travel { to { stroke-dashoffset: -100; } }
@media (min-width: 1450px) { .hero .container, .site-header .container { max-width: 1410px; } }
@media (max-width: 1080px) and (min-width: 821px) {
  .hero h1 { font-size: 49px; }
  .hero-actions { gap: 12px; }
  .hero-actions .button { font-size: 13px; }
  .glass-card { padding: 17px 14px; gap: 8px; }
  .benefits-inner article { padding-inline: 20px; gap: 16px; }
  .benefits-inner h2 { font-size: 15px; }
  .benefits-inner p { font-size: 13px; }
}
@media (max-width: 820px) {
  .hero { padding-top: 110px; }
  .hero-inner { grid-template-columns: 1fr; gap: 8px; }
  .hero-copy { max-width: 620px; }
  .hero h1 { font-size: clamp(44px, 8.5vw, 65px); max-width: 650px; }
  .hero-lead { max-width: 480px; }
  .operation-visual { width: 100%; max-width: 690px; margin: -5px auto 0; }
  .glass-card strong { font-size: clamp(12px, 2.5vw, 19px); }
  .benefits-inner { padding-block: 22px; }
  .benefits-inner article { gap: 12px; padding-inline: 15px; align-items: flex-start; }
  .benefits-inner svg { flex-basis: 30px; width: 30px; height: 35px; }
  .benefits-inner h2 { font-size: 14px; }
  .benefits-inner p { font-size: 12px; }
  .desktop-break { display: none; }
}
@media (max-width: 520px) {
  .brand { width: 170px; }
  .hero .eyebrow { font-size: 8px; letter-spacing: .13em; gap: 12px; }
  .hero h1 { font-size: clamp(39px, 11.6vw, 59px); margin-top: 24px; }
  .hero-lead { font-size: 19px; }
  .hero-actions { margin-top: 26px; gap: 15px; }
  .hero-actions .text-link { align-self: center; }
  .hero-signature { text-align: center; font-size: 12px; margin-top: 16px; }
  .hero-copy { padding-bottom: 0; }
  .operation-visual { margin-top: 10px; width: 100%; }
  .glass-card { border-radius: 9px; padding: 15px 10px; gap: 7px; width: 30%; }
  .glass-card strong { font-size: 11px; }
  .card-check { top: 5px; right: 5px; width: 15px; height: 15px; font-size: 11px; }
  .card-lines { height: 3px; margin-top: 0; }
  .card-lines::after { top: 7px; height: 3px; }
  .visual-note { font-size: 6px; }
  .hero-benefits { margin-top: 15px; }
  .benefits-inner { grid-template-columns: 1fr; padding-block: 5px; }
  .benefits-inner article, .benefits-inner article:first-child, .benefits-inner article:last-child { padding: 18px 5px; border-right: 0; gap: 20px; }
  .benefits-inner article + article { border-top: 1px solid #215157; }
  .benefits-inner h2 { font-size: 16px; }
  .benefits-inner p { font-size: 14px; }
}

/* Two distinct services and contact intents. */
.services { padding: 100px 0; }
.service-options { display: grid; grid-template-columns: 1fr 1fr; margin-top: 50px; border: 1px solid var(--line); }
.service-option { padding: clamp(24px, 3.5vw, 48px); display: flex; flex-direction: column; align-items: flex-start; }
.service-consulting { background: #dce9e5; border-left: 1px solid var(--line); }
.service-tag { color: #00606a; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.service-option h3 { font-size: clamp(28px, 3vw, 40px); line-height: 1.08; margin-bottom: 22px; }
.service-option > p:not(.service-tag) { color: var(--muted); font-size: 16px; line-height: 1.6; }
.service-option ul { padding-left: 19px; margin: 6px 0 25px; line-height: 1.6; font-size: 15px; }
.service-option li + li { margin-top: 9px; }
.service-option .service-fit { margin-top: auto; padding-top: 14px; border-top: 1px solid #b4ccc4; }
.service-option .button { margin-top: 10px; }
.button-consulting { background: #087887; color: white; }
.button-consulting:hover { background: #006371; }
.section-dark .button-consulting { background: #52dfeb; color: #002b31; }
.section-dark .button-consulting:hover { background: #9df5fa; }
.service-action { margin-top: 32px; }
.consulting-steps { margin: 0; padding-left: 22px; }
.consulting-steps li { padding-left: 8px; }
.consulting-steps li::marker { color: var(--lime); }
.consulting-steps strong, .consulting-steps span { display: block; }
.consulting-steps strong { color: var(--white); margin-bottom: 6px; font-size: 16px; }
.consulting-steps span { font-size: 14px; line-height: 1.5; }
.contact-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin: 45px 0 30px; }
.contact-choices article { border-top: 1px solid var(--line-dark); padding-top: 30px; display: flex; flex-direction: column; align-items: flex-start; }
.contact-choices h3 { font-size: 29px; margin-bottom: 16px; }
.contact-choices p { max-width: 480px; line-height: 1.6; color: var(--muted-dark); }
.contact-choices .button { margin-top: auto; }
.hero-signature { text-align: left; }
@media(max-width: 700px) {
  .services { padding: 72px 0; }
  .service-options, .contact-choices { grid-template-columns: 1fr; }
  .service-consulting { border-left: 0; border-top: 1px solid var(--line); }
  .contact-choices { gap: 32px; }
  .service-option .button { width: 100%; text-align: center; padding-block: 12px; }
  .hero-signature { text-align: center; }
}


/* ==========================================================================
   PÁGINA DE TERMOS E CONDIÇÕES DE USO - ÁGIL SEND
   ========================================================================== */

.terms-hero {
  position: relative;
  background: #00161a;
  color: var(--white);
  padding: calc(var(--header-height) + 50px) 0 45px;
  border-bottom: 1px solid rgba(206, 232, 224, 0.12);
}

.terms-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 30%, rgba(19, 185, 201, 0.18), transparent 50%);
  pointer-events: none;
}

.terms-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.terms-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(248, 251, 248, 0.6);
  margin-bottom: 20px;
}

.terms-breadcrumbs a {
  color: var(--cyan-soft);
  text-decoration: none;
  transition: color 150ms ease;
}

.terms-breadcrumbs a:hover {
  color: var(--white);
  text-decoration: underline;
}

.terms-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 16px 0 20px;
  color: var(--white);
}

.terms-hero-lead {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.6;
  color: rgba(248, 251, 248, 0.78);
  margin-bottom: 26px;
  max-width: 820px;
}

.terms-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 14px 18px;
  background: rgba(16, 42, 47, 0.7);
  border: 1px solid rgba(201, 237, 228, 0.2);
  border-radius: 6px;
  font-size: 0.78rem;
  color: rgba(248, 251, 248, 0.75);
}

.terms-meta-item strong {
  color: var(--lime);
  font-weight: 600;
}

.terms-main {
  background: var(--paper);
  padding: 55px 0 100px;
}

.terms-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.terms-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  max-height: calc(100vh - var(--header-height) - 40px);
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 18px;
  box-shadow: 0 4px 20px rgba(9, 25, 28, 0.04);
}

.terms-sidebar-title {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-dark);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.terms-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.terms-nav-list a {
  display: block;
  padding: 7px 10px;
  border-radius: 4px;
  font-size: 0.81rem;
  line-height: 1.35;
  color: var(--muted);
  text-decoration: none;
  transition: all 150ms ease;
  border-left: 2px solid transparent;
}

.terms-nav-list a:hover {
  color: var(--ink);
  background: var(--paper-2);
  border-left-color: var(--cyan);
}

.terms-nav-list a.is-anexo {
  color: #835200;
  font-weight: 600;
}

.terms-content {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 56px);
  color: #17282b;
  font-size: 0.95rem;
  line-height: 1.75;
  box-shadow: 0 4px 24px rgba(9, 25, 28, 0.03);
}

.terms-intro-box {
  background: #f0f7f5;
  border: 1px solid #bddbd3;
  border-left: 4px solid var(--cyan-dark);
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 40px;
}

.terms-intro-box p:last-child {
  margin-bottom: 0;
}

.terms-section {
  padding-top: 36px;
  margin-top: 40px;
  border-top: 1px solid #e2ece7;
  scroll-margin-top: calc(var(--header-height) + 30px);
}

.terms-section:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.terms-section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.terms-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0 0 20px;
  color: var(--ink);
}

.terms-section h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 26px 0 12px;
  color: var(--ink-2);
}

.terms-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: var(--ink-3);
}

.terms-section p {
  margin-bottom: 18px;
  color: #273e42;
}

.terms-section ul, .terms-section ol {
  margin: 12px 0 22px;
  padding-left: 24px;
}

.terms-section li {
  margin-bottom: 8px;
  color: #273e42;
}

.terms-section strong {
  color: var(--ink);
}

.terms-callout {
  background: #fbfdf9;
  border: 1px solid #d4ebc5;
  border-left: 4px solid #63a817;
  padding: 18px 22px;
  border-radius: 4px;
  margin: 22px 0;
}

.terms-callout.callout-alert {
  background: #fffcf4;
  border-color: #f7ddb2;
  border-left-color: #c77700;
}

.terms-callout.callout-danger {
  background: #fff8f8;
  border-color: #fad3d3;
  border-left-color: #cc2929;
}

.terms-callout.callout-cyan {
  background: #f1fcfe;
  border-color: #bce9f0;
  border-left-color: var(--cyan);
}

.terms-callout-title {
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terms-callout p:last-child {
  margin-bottom: 0;
}

.terms-def-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0 30px;
}

.terms-def-item {
  background: #f7faf8;
  border: 1px solid #e0ebe5;
  border-radius: 5px;
  padding: 16px 18px;
}

.terms-def-item dt {
  font-weight: 700;
  color: var(--cyan-dark);
  font-size: 0.96rem;
  margin-bottom: 6px;
}

.terms-def-item dd {
  margin: 0;
  color: #374c4f;
  font-size: 0.92rem;
  line-height: 1.6;
}

.terms-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0 32px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}

.terms-table th, .terms-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.terms-table th {
  background: #ecf3f0;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.terms-table tbody tr:nth-child(even) {
  background: #fbfdfc;
}

.terms-table tbody tr:hover {
  background: #f2f7f5;
}

.terms-back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--cyan-dark);
  text-decoration: none;
  font-weight: 600;
  margin-top: 24px;
  transition: color 150ms ease;
}

.terms-back-top:hover {
  color: var(--ink);
}

.footer-terms-link {
  color: var(--lime);
  text-decoration: underline;
  transition: opacity 150ms ease;
}

.footer-terms-link:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .terms-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .terms-sidebar {
    position: relative;
    top: 0;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .terms-hero {
    padding-top: calc(var(--header-height) + 30px);
  }

  .terms-meta-bar {
    flex-direction: column;
    gap: 8px;
  }

  .terms-content {
    padding: 22px 18px;
  }

  .terms-table th, .terms-table td {
    padding: 9px 12px;
    font-size: 0.82rem;
  }
}
