@font-face {
  font-family: "Lufga";
  src: url("assets/fonts/LufgaRegular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("assets/fonts/LufgaMedium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("assets/fonts/LufgaSemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("assets/fonts/LufgaBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --font: "Lufga", "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --orange-50: #fff5f0;
  --orange-100: #ffe8dc;
  --orange-200: #ffcdb8;
  --orange-300: #ffa27f;
  --orange-400: #ff7a4d;
  --accent: #ff4e1b;
  --accent-dark: #d93808;
  --accent-deep: #9a2907;
  --ink: #0b0d10;
  --ink-soft: #34383e;
  --muted: #70757c;
  --line: rgba(11, 13, 16, 0.1);
  --line-soft: rgba(11, 13, 16, 0.065);
  --paper: #ffffff;
  --paper-warm: #fffdfa;
  --surface: #f4f5f7;
  --surface-2: #eceff3;
  --dark: #111216;
  --dark-2: #191b20;
  --w: 1280px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-soft: 0 18px 60px rgba(40, 22, 12, 0.08);
  --shadow-card: 0 24px 80px rgba(37, 20, 9, 0.12);
  --section-pad: clamp(90px, 8.5vw, 124px);
  --type-display: clamp(50px, 5.15vw, 76px);
  --type-title: clamp(28px, 2.7vw, 40px);
  --type-body: 16px;
  --type-meta: 12px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--type-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body, button, a { font-family: var(--font); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.container {
  width: min(calc(100% - 48px), var(--w));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid rgba(255, 78, 27, 0.52);
  outline-offset: 4px;
  border-radius: 8px;
}

.reading-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  z-index: 200;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
}

@supports (animation-timeline: scroll()) {
  .reading-progress {
    animation: reading-progress linear both;
    animation-timeline: scroll();
  }
  @keyframes reading-progress { to { transform: scaleX(1); } }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line-soft);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  width: 42px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img { object-fit: contain; }

.brand-copy {
  font-size: var(--type-body);
  line-height: 1.12;
  font-weight: 600;
}

.brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: var(--type-meta);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.header-context {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: var(--type-meta);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-context span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 78, 27, 0.1);
}

.header-inner > .button { justify-self: end; }

.button {
  min-height: 54px;
  padding: 8px 9px 8px 22px;
  border: 0;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--ink);
  color: white;
  font-size: var(--type-body);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(11, 13, 16, 0.14);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(11, 13, 16, 0.18);
}

.button:active { transform: translateY(0) scale(0.985); }

.button-primary {
  background: var(--accent);
  box-shadow: 0 12px 34px rgba(216, 56, 8, 0.23);
}

.button-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 44px rgba(216, 56, 8, 0.3);
}

.button-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: white;
  color: var(--accent);
  font-size: 17px;
  transition: transform 0.24s var(--ease);
}

.button:hover .button-icon { transform: rotate(4deg) scale(1.04); }

.button-small {
  min-height: 44px;
  padding: 6px 7px 6px 16px;
  gap: 13px;
  font-size: var(--type-body);
  border-radius: 10px;
}

.button-small .button-icon { width: 31px; height: 31px; font-size: 14px; }
.button-full { width: 100%; }

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 78px;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 166, 123, 0.22), transparent 25%),
    linear-gradient(112deg, #fff 0%, #fffdf9 52%, #fff6ef 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: radial-gradient(rgba(11, 13, 16, 0.16) 0.7px, transparent 0.8px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 48%, black 80%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 48%, black 80%, transparent 100%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 78, 27, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one { width: 580px; height: 580px; top: 110px; right: -290px; }
.orbit-two { width: 360px; height: 360px; top: 222px; right: -180px; }

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 126px);
  padding-block: clamp(64px, 9vh, 105px) 52px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(540px, 1.06fr);
  align-items: center;
  gap: clamp(46px, 6vw, 90px);
}

.hero-copy { position: relative; z-index: 4; }

.eyebrow,
.section-index {
  color: var(--accent);
  font-size: var(--type-meta);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 11px 7px 9px;
  border-radius: 999px;
  background: var(--orange-50);
}

.eyebrow.live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 78, 27, 0.32);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse { 70% { box-shadow: 0 0 0 7px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.hero h1 {
  max-width: 760px;
  margin: 24px 0 22px;
  font-size: var(--type-display);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

h1 em, h2 em {
  color: var(--accent);
  font-style: normal;
  font-weight: inherit;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--type-body);
  line-height: 1.55;
}

.hero-action {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-action > p {
  margin: 0;
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.4;
}

.hero-action > p strong { color: var(--ink); font-size: var(--type-body); font-weight: 600; }
.hero-action > p span { max-width: 230px; }

.hero-trust {
  margin-top: clamp(34px, 5vh, 52px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.hero-trust span {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.45;
}

.hero-trust b { display: block; color: var(--ink); font-size: var(--type-body); font-weight: 600; }

.hero-stage {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.document-card,
.dashboard-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(11, 13, 16, 0.075);
  box-shadow: var(--shadow-card);
}

.document-card {
  z-index: 3;
  top: 18px;
  left: 8px;
  width: min(340px, 58%);
  min-height: 420px;
  padding: 23px;
  border-radius: 18px;
  transform: rotate(-4deg);
}

.document-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(11, 13, 16, 0.055);
  border-radius: 12px;
  pointer-events: none;
}

.document-top { display: flex; align-items: center; gap: 10px; }
.document-top > div:nth-child(2) { display: grid; line-height: 1.15; }
.document-top > div:nth-child(2) span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; }
.document-top > div:nth-child(2) b { font-size: 12px; font-weight: 600; }

.document-seal {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.document-status {
  margin-left: auto;
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--orange-50);
  color: var(--accent-dark);
  font-size: 8px;
  font-weight: 600;
}

.document-title {
  margin-top: 35px;
  max-width: 250px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.document-rule { width: 46px; height: 3px; margin: 18px 0 24px; border-radius: 99px; background: var(--accent); }
.document-line { width: 84%; height: 5px; margin: 10px 0; border-radius: 99px; background: #e7e9ec; }
.document-line.long { width: 100%; }
.document-line.short { width: 62%; }

.document-data {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.document-data div { padding: 10px 8px; border-radius: 9px; background: var(--surface); }
.document-data span { display: block; color: var(--muted); font-size: 7.5px; text-transform: uppercase; letter-spacing: 0.07em; }
.document-data b { font-size: 10px; font-weight: 600; }

.document-foot {
  position: absolute;
  right: 23px;
  bottom: 20px;
  color: var(--muted);
  font-size: 7.5px;
}

.dashboard-card {
  z-index: 2;
  right: 0;
  bottom: 12px;
  width: min(485px, 80%);
  min-height: 365px;
  border-radius: 22px;
  transform: rotate(2.5deg);
  overflow: hidden;
}

.dashboard-head {
  height: 65px;
  padding: 12px 15px 12px 76px;
  display: flex;
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}

.dashboard-head > div { display: grid; line-height: 1.2; }
.dashboard-head span { color: var(--muted); font-size: 8px; }
.dashboard-head b { font-size: 11px; font-weight: 600; }

.avatar {
  width: 31px;
  height: 31px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--accent-deep) !important;
  font-size: 9px !important;
  font-weight: 600;
}

.dashboard-body { min-height: 300px; display: grid; grid-template-columns: 60px 1fr; background: var(--surface); }

.dashboard-sidebar {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  background: var(--paper);
}

.dash-brand { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: var(--accent); color: white; font-size: 10px; font-weight: 700; }
.dashboard-sidebar i { width: 17px; height: 5px; border-radius: 99px; background: #dfe2e7; }
.dashboard-sidebar i.active { background: var(--accent); }

.dashboard-main { padding: 23px 20px 18px; }
.today-label { margin-bottom: 12px; color: var(--muted); font-size: 8px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; }

.study-card {
  min-height: 66px;
  margin-bottom: 9px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  border-radius: 13px;
  background: white;
}

.study-card.hot { box-shadow: inset 3px 0 var(--accent); }
.study-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--orange-100); color: var(--accent-dark); font-size: 9px; font-weight: 700; }
.study-icon.pale { background: #ebedf1; color: var(--ink-soft); }
.study-card > div:nth-child(2) { display: grid; }
.study-card b { font-size: 10px; font-weight: 600; }
.study-card span { color: var(--muted); font-size: 8px; }
.study-card strong { color: var(--muted); font-size: 8px; font-weight: 500; }

.queue-row {
  margin-top: 14px;
  padding: 10px 11px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  border-radius: 12px;
  background: var(--dark);
  color: white;
}

.queue-row > div:first-child { display: grid; gap: 2px; }
.queue-row span { color: rgba(255, 255, 255, 0.55); font-size: 7px; text-transform: uppercase; letter-spacing: 0.08em; }
.queue-row b { font-size: 8.5px; font-weight: 500; }
.queue-dots { display: flex; align-items: end; gap: 4px; height: 22px; }
.queue-dots i { width: 5px; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.2); }
.queue-dots i:nth-child(2) { height: 12px; }
.queue-dots i:nth-child(3) { height: 18px; background: var(--accent); }
.queue-dots i:nth-child(4) { height: 14px; }
.queue-dots i:nth-child(5) { height: 20px; background: var(--orange-400); }

.flow-line {
  position: absolute;
  z-index: 5;
  left: 40%;
  top: 42%;
  width: 170px;
  height: 90px;
  border: 2px dashed rgba(255, 78, 27, 0.34);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 60px 0 0;
  transform: rotate(19deg);
}

.flow-line::after { content: "→"; position: absolute; right: -6px; bottom: -12px; color: var(--accent); font-size: 18px; transform: rotate(-19deg); }
.flow-line span { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); offset-path: path("M 0 90 C 18 20 98 0 170 0"); animation: flow 3.5s ease-in-out infinite; }
@keyframes flow { 0%, 10% { offset-distance: 0; opacity: 0; } 25% { opacity: 1; } 80% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }

.stage-note {
  position: absolute;
  z-index: 8;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.note-one { top: 4px; left: 36%; }
.note-two { right: 2%; bottom: 0; background: var(--accent); }

.official-note {
  position: relative;
  z-index: 4;
  min-height: 48px;
  padding-block: 13px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: var(--type-meta);
}

.official-note a { color: var(--ink); font-weight: 600; }
.official-note a:hover { color: var(--accent); }

.facts { background: var(--dark); color: white; }

.facts-grid {
  min-height: 158px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts article {
  min-width: 0;
  padding: 38px clamp(18px, 3vw, 38px);
  display: flex;
  align-items: center;
  gap: 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.facts article:first-child { padding-left: 0; }
.facts article:last-child { padding-right: 0; border-right: 0; }
.fact-number { color: var(--orange-400); font-size: clamp(25px, 2vw, 33px); font-weight: 600; line-height: 1; letter-spacing: -0.04em; white-space: nowrap; }
.facts p { margin: 0; color: rgba(255, 255, 255, 0.55); font-size: var(--type-body); line-height: 1.45; }
.facts b { color: white; font-size: var(--type-body); font-weight: 500; }

.section { padding-block: var(--section-pad); }

.section-intro h2,
.section-heading h2,
.product-copy h2,
.edital-heading h2,
.offer-copy h2,
.faq-copy h2,
.final-inner h2 {
  margin: 16px 0 20px;
  font-size: var(--type-title);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.section-intro p,
.section-heading > p,
.product-copy > p,
.edital-heading > p,
.offer-copy > p,
.faq-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.65;
}

.problem { background: var(--paper-warm); }

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.problem-contrast {
  min-height: 500px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: stretch;
  border-radius: var(--r-xl);
  background: var(--surface);
}

.contrast-before,
.contrast-after {
  min-height: 430px;
  padding: 27px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
}

.contrast-before { background: #e8eaee; }
.contrast-after { background: var(--accent); color: white; }
.contrast-before > span, .contrast-after > span { font-size: var(--type-meta); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.contrast-before > span { color: var(--muted); }
.contrast-after > span { color: rgba(255, 255, 255, 0.66); }
.contrast-before p, .contrast-after p { margin: auto 0 0; font-size: var(--type-body); font-weight: 500; line-height: 1.45; }
.contrast-before p { color: var(--ink-soft); }

.chaos-stack { position: relative; height: 225px; margin-top: 38px; }
.chaos-stack i {
  position: absolute;
  width: 140px;
  min-height: 49px;
  padding: 15px 17px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 10px 25px rgba(11, 13, 16, 0.08);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
}
.chaos-stack i:nth-child(1) { top: 0; left: 13px; transform: rotate(-8deg); }
.chaos-stack i:nth-child(2) { top: 58px; right: 2px; transform: rotate(7deg); }
.chaos-stack i:nth-child(3) { top: 122px; left: 0; transform: rotate(3deg); }
.chaos-stack i:nth-child(4) { top: 168px; right: 10px; transform: rotate(-5deg); color: var(--accent); }

.contrast-arrow { display: grid; place-items: center; color: var(--muted); font-size: 20px; }

.focus-ring {
  width: 190px;
  height: 190px;
  margin: 58px auto 0;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}

.focus-ring::before, .focus-ring::after { content: ""; position: absolute; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; }
.focus-ring::before { inset: 22px; }
.focus-ring::after { inset: 44px; }
.focus-ring i { position: absolute; inset: -1px; border-radius: inherit; border-top: 2px solid white; transform: rotate(42deg); }
.focus-ring b { font-size: 43px; font-weight: 500; }

.method { background: white; }

.section-heading {
  max-width: 940px;
  margin-bottom: 56px;
}

.section-heading > p { max-width: 690px; }
.section-heading.compact { max-width: 860px; margin-bottom: 56px; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.method-card {
  min-height: 400px;
  padding: clamp(27px, 3vw, 40px);
  border-radius: var(--r-lg);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.method-card.featured { background: var(--accent); color: white; }
.card-number { color: var(--muted); font-size: var(--type-meta); font-weight: 600; letter-spacing: 0.1em; }
.featured .card-number { color: rgba(255, 255, 255, 0.62); }

.method-icon {
  width: 118px;
  height: 118px;
  margin: 42px 0 auto;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.featured .method-icon { background: rgba(255, 255, 255, 0.13); box-shadow: none; }
.calendar-icon { padding: 23px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.calendar-icon::before { content: ""; position: absolute; left: 23px; right: 23px; top: 19px; height: 3px; border-radius: 9px; background: var(--accent); }
.calendar-icon i { margin-top: 13px; border-radius: 6px; background: var(--orange-100); }
.calendar-icon i:nth-child(3) { background: var(--accent); }
.note-icon i { position: absolute; left: 27px; right: 27px; height: 5px; border-radius: 99px; background: rgba(255, 255, 255, 0.38); }
.note-icon i:nth-child(1) { top: 35px; right: 42px; background: white; }
.note-icon i:nth-child(2) { top: 54px; }
.note-icon i:nth-child(3) { top: 73px; right: 54px; }
.repeat-icon { display: grid; place-items: center; }
.repeat-icon span { color: var(--accent); font-size: 57px; font-weight: 400; line-height: 1; }

.method-card h3 { margin: 30px 0 13px; font-size: var(--type-title); font-weight: 600; line-height: 1.12; letter-spacing: -0.035em; }
.method-card p { margin: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.65; }
.method-card.featured p { color: rgba(255, 255, 255, 0.75); }

.method-cta {
  margin-top: 18px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: var(--r-md);
  background: var(--dark);
  color: white;
}

.method-cta p { margin: 0; color: rgba(255, 255, 255, 0.68); font-size: var(--type-body); }
.method-cta b { color: white; font-weight: 600; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--orange-400); font-size: var(--type-body); font-weight: 600; white-space: nowrap; }

.product { background: var(--surface); overflow: hidden; }

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 52px clamp(44px, 6vw, 82px);
  align-items: start;
}

.product-copy {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: end;
}
.product-copy h2 { max-width: 760px; }
.product-copy > p { max-width: 520px; padding-bottom: 7px; }
.product-window { grid-column: 1; }
.feature-list {
  grid-column: 2;
  display: grid;
  align-self: stretch;
  border-bottom: 1px solid var(--line);
}
.feature-list div { padding: 22px 0; display: grid; grid-template-columns: 36px 1fr; gap: 13px; align-content: center; border-top: 1px solid var(--line); }
.feature-list span { color: var(--accent); font-size: var(--type-meta); font-weight: 600; }
.feature-list p { margin: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.6; }
.feature-list b { color: var(--ink); font-weight: 600; }

.product-window {
  min-height: 615px;
  border-radius: var(--r-xl);
  background: #dfe2e7;
  box-shadow: 0 32px 100px rgba(11, 13, 16, 0.15);
  overflow: hidden;
}

.window-bar { height: 74px; padding: 0 19px 0 23px; display: flex; align-items: center; background: white; border-bottom: 1px solid var(--line-soft); }
.window-brand { display: flex; align-items: center; gap: 9px; }
.window-brand span { font-size: 10px; font-weight: 600; line-height: 1.15; }
.window-brand small { display: block; margin-top: 3px; color: var(--muted); font-size: 7px; font-weight: 500; }
.window-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.window-actions i { width: 27px; height: 27px; border-radius: 50%; background: var(--surface); }
.window-actions span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-100); color: var(--accent-dark); font-size: 8px; font-weight: 600; }

.window-layout { min-height: 541px; padding: 10px; display: grid; grid-template-columns: 160px 1fr; gap: 10px; }
.window-nav { min-height: 521px; padding: 22px 14px 8px; border-radius: 17px; background: white; display: flex; flex-direction: column; }
.window-nav .nav-title { margin: 14px 9px 6px; color: #a0a4aa; font-size: 7px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.window-nav .nav-title:first-child { margin-top: 0; }
.window-nav i { min-height: 31px; padding: 7px 9px; display: flex; align-items: center; gap: 8px; border-radius: 8px; color: #656a71; font-size: 8px; font-style: normal; font-weight: 500; }
.window-nav i b { width: 9px; height: 9px; border: 1.5px solid currentColor; border-radius: 3px; }
.window-nav i.selected { background: var(--accent); color: white; }
.window-nav img { width: 90px; height: auto; margin: auto auto 0; }

.window-content { min-width: 0; padding: 24px; border-radius: 17px; background: #f7f8fa; }
.window-greeting { display: flex; align-items: start; justify-content: space-between; gap: 15px; }
.window-greeting small { color: var(--muted); font-size: 7px; font-weight: 600; letter-spacing: 0.08em; }
.window-greeting h3 { margin: 5px 0 0; font-size: 20px; font-weight: 600; letter-spacing: -0.035em; }
.window-greeting > span { padding: 7px 9px; border-radius: 999px; background: var(--orange-100); color: var(--accent-dark); font-size: 7px; font-weight: 600; }

.window-priority { margin-top: 26px; padding: 17px; border-radius: 15px; background: white; }
.priority-top { display: flex; justify-content: space-between; color: var(--muted); font-size: 7px; text-transform: uppercase; letter-spacing: 0.08em; }
.priority-top b { color: var(--accent); font-weight: 600; }
.priority-main { margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--line-soft); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; }
.subject-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: var(--orange-100); color: var(--accent-dark); font-size: 9px; font-weight: 700; }
.priority-main > div { display: grid; }
.priority-main b { font-size: 10px; font-weight: 600; }
.priority-main small { color: var(--muted); font-size: 8px; }
.priority-main button { min-height: 31px; padding: 0 13px; border: 0; border-radius: 8px; background: var(--accent); color: white; font-size: 8px; font-weight: 600; }

.window-grid { margin-top: 12px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 12px; }
.mini-panel { min-height: 159px; padding: 17px; border-radius: 15px; background: white; display: flex; flex-direction: column; }
.mini-panel > span { color: var(--muted); font-size: 7px; text-transform: uppercase; letter-spacing: 0.08em; }
.mini-panel > b { margin-top: 6px; font-size: 10px; font-weight: 600; }
.mini-panel.orange { background: var(--accent); color: white; }
.mini-panel.orange > span { color: rgba(255, 255, 255, 0.58); }
.mini-lines { margin-top: auto; display: grid; gap: 7px; }
.mini-lines i { height: 8px; border-radius: 99px; background: var(--surface); }
.mini-lines i:nth-child(2) { width: 78%; background: var(--orange-100); }
.mini-lines i:nth-child(3) { width: 55%; }
.week-dots { margin-top: auto; display: flex; align-items: end; gap: 7px; height: 48px; }
.week-dots i { flex: 1; height: 45%; border-radius: 5px 5px 2px 2px; background: rgba(255, 255, 255, 0.3); }
.week-dots i:nth-child(2) { height: 78%; }
.week-dots i:nth-child(3) { height: 62%; }
.week-dots i:nth-child(4) { height: 92%; background: white; }
.week-dots i:nth-child(5) { height: 68%; }

.edital { background: var(--dark); color: white; }
.edital-heading { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 90px; align-items: end; }
.edital-heading h2 { max-width: 850px; margin-bottom: 0; }
.edital-heading > p { padding-bottom: 7px; color: rgba(255, 255, 255, 0.58); }
.section-index.light { color: var(--orange-400); }

.edital-timeline {
  margin-top: 82px;
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--r-lg);
  background: var(--dark-2);
}

.edital-timeline article { position: relative; min-height: 130px; padding-right: 22px; }
.edital-timeline article::before { content: ""; position: absolute; left: 10px; right: -10px; top: 48px; height: 1px; background: rgba(255, 255, 255, 0.14); }
.edital-timeline article:last-child::before { display: none; }
.edital-timeline article > span { color: rgba(255, 255, 255, 0.48); font-size: var(--type-meta); font-weight: 600; letter-spacing: 0.1em; }
.edital-timeline article > i { position: relative; z-index: 2; width: 20px; height: 20px; margin-top: 13px; display: block; border: 5px solid var(--dark-2); border-radius: 50%; background: #666a70; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18); }
.edital-timeline article.past > i, .edital-timeline article.target > i { background: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.edital-timeline article.target > i { animation: target 2.5s ease-out infinite; }
@keyframes target { 70% { box-shadow: 0 0 0 12px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.edital-timeline article > div { margin-top: 15px; display: grid; }
.edital-timeline b { font-size: var(--type-body); font-weight: 500; }
.edital-timeline small { margin-top: 3px; color: rgba(255, 255, 255, 0.45); font-size: var(--type-body); }

.requirements { margin-top: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.requirements > div, .requirements > a { min-height: 180px; padding: 24px; border-radius: var(--r-md); background: var(--dark-2); display: flex; flex-direction: column; }
.requirements > a { background: var(--accent); transition: transform 0.25s var(--ease); }
.requirements > a:hover { transform: translateY(-3px); }
.requirements span { color: rgba(255, 255, 255, 0.42); font-size: var(--type-meta); font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; }
.requirements b { margin-top: auto; font-size: var(--type-body); font-weight: 500; line-height: 1.25; }
.requirements p { margin: 8px 0 0; color: rgba(255, 255, 255, 0.45); font-size: var(--type-body); }
.requirements > a span, .requirements > a p { color: rgba(255, 255, 255, 0.68); }

.included { background: var(--paper-warm); }

.included-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.included-card { grid-column: span 4; min-height: 270px; padding: 30px; border-radius: var(--r-lg); background: white; display: flex; flex-direction: column; position: relative; }
.included-card.large { grid-column: span 7; }
.included-card:nth-child(2) { grid-column: span 5; }
.included-card.final { grid-column: span 4; background: var(--surface); }
.included-label { color: var(--muted); font-size: var(--type-meta); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.included-card h3 { max-width: 460px; margin: auto 0 12px; font-size: var(--type-title); font-weight: 600; line-height: 1.12; letter-spacing: -0.035em; }
.included-card p { max-width: 530px; margin: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.6; }
.included-card.final h3, .included-card.final p { max-width: 470px; }
.orange-card { background: var(--accent); color: white; }
.orange-card .included-label, .orange-card p { color: rgba(255, 255, 255, 0.7); }

.route-visual { position: absolute; top: 48px; right: 32px; width: 48%; display: flex; align-items: center; gap: 9px; }
.route-visual::before { content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 2px; background: var(--surface-2); }
.route-visual i { position: relative; z-index: 2; width: 18px; height: 18px; flex: 0 0 auto; border: 4px solid white; border-radius: 50%; background: var(--surface-2); }
.route-visual i.done, .route-visual i.active { background: var(--accent); }
.route-visual i.active { box-shadow: 0 0 0 6px var(--orange-100); }
.route-visual span { flex: 1; }

.review-stack { margin-top: 34px; display: flex; gap: 7px; }
.review-stack i { padding: 7px 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.14); font-size: var(--type-meta); font-style: normal; }
.review-stack i:last-child { background: white; color: var(--accent); }

.offer-section { background: white; }
.offer-layout { display: grid; grid-template-columns: 1fr minmax(420px, 0.72fr); gap: clamp(70px, 9vw, 135px); align-items: center; }
.offer-copy h2 { max-width: 770px; }
.offer-copy > p { max-width: 680px; }
.offer-assurances { margin-top: 45px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.offer-assurances span { min-height: 88px; padding: 16px; border-radius: var(--r-sm); background: var(--surface); color: var(--ink-soft); font-size: var(--type-body); font-weight: 500; line-height: 1.45; }

.price-card { padding: clamp(30px, 4vw, 48px); border-radius: var(--r-xl); background: var(--dark); color: white; box-shadow: 0 34px 90px rgba(11, 13, 16, 0.2); }
.price-top { display: grid; gap: 3px; }
.price-top span { color: var(--orange-400); font-size: var(--type-meta); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.price-top b { font-size: var(--type-body); font-weight: 500; }
.price { margin-top: 38px; display: flex; align-items: baseline; }
.price > span { align-self: flex-start; margin: 13px 7px 0 0; color: rgba(255, 255, 255, 0.58); font-size: var(--type-body); }
.price strong { font-size: clamp(76px, 8vw, 108px); font-weight: 500; line-height: 0.9; letter-spacing: -0.075em; }
.price small { margin-left: 9px; color: rgba(255, 255, 255, 0.53); font-size: var(--type-body); }
.price-card > p { margin: 15px 0 0; color: rgba(255, 255, 255, 0.5); font-size: var(--type-body); }
.price-divider { height: 1px; margin: 33px 0 25px; background: rgba(255, 255, 255, 0.11); }
.price-includes { margin-bottom: 31px; display: grid; gap: 13px; }
.price-includes span { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.75); font-size: var(--type-body); }
.price-includes i { width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(255, 78, 27, 0.18); color: var(--orange-400); font-size: 10px; font-style: normal; }
.checkout-note { display: block; margin-top: 14px; color: rgba(255, 255, 255, 0.38); font-size: var(--type-meta); text-align: center; }

.faq { background: var(--surface); }
.faq-layout { display: grid; grid-template-columns: minmax(330px, 0.72fr) minmax(550px, 1.28fr); gap: clamp(70px, 10vw, 145px); align-items: start; }
.faq-copy { position: sticky; top: 120px; }
.faq-side-card { margin-top: 43px; padding: 24px; border-radius: var(--r-md); background: var(--dark); color: white; display: grid; }
.faq-side-card > span { color: var(--orange-400); font-size: var(--type-meta); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.faq-side-card b { margin-top: 18px; font-size: var(--type-body); font-weight: 600; }
.faq-side-card p { margin: 8px 0 20px; color: rgba(255, 255, 255, 0.56); font-size: var(--type-body); }
.faq-side-card a { color: var(--orange-400); font-size: var(--type-body); font-weight: 600; }

.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 84px; padding: 21px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: var(--type-body); font-weight: 500; line-height: 1.3; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 26px; height: 26px; position: relative; flex: 0 0 auto; border-radius: 50%; background: white; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 12px; left: 7px; right: 7px; height: 2px; border-radius: 99px; background: var(--ink); }
.faq-list summary span::after { transform: rotate(90deg); transition: transform 0.2s ease; }
.faq-list details[open] summary span { background: var(--accent); }
.faq-list details[open] summary span::before, .faq-list details[open] summary span::after { background: white; }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details > p { max-width: 720px; margin: 2px 60px 25px 4px; color: var(--muted); font-size: var(--type-body); line-height: 1.65; }

.final-cta { position: relative; padding-block: clamp(100px, 12vw, 175px); background: var(--paper-warm); overflow: hidden; }
.final-cta::before { content: ""; position: absolute; width: 640px; height: 640px; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(255, 78, 27, 0.13), transparent 67%); }
.final-orbit { position: absolute; width: min(82vw, 1060px); aspect-ratio: 1; left: 50%; top: 50%; transform: translate(-50%, -50%); border: 1px solid rgba(255, 78, 27, 0.12); border-radius: 50%; }
.final-orbit::before, .final-orbit::after { content: ""; position: absolute; inset: 12%; border: inherit; border-radius: inherit; }
.final-orbit::after { inset: 26%; }
.final-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-inner > img { object-fit: contain; }
.final-inner > span { margin-top: 22px; color: var(--accent); font-size: var(--type-meta); font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.final-inner h2 { max-width: 980px; }
.final-inner p { margin: 0 0 28px; color: var(--muted); font-size: var(--type-body); }

.site-footer { background: var(--dark); color: white; }
.footer-grid { min-height: 180px; padding-block: 42px; display: grid; grid-template-columns: 1fr 1.4fr 1fr; align-items: center; gap: 45px; }
.footer-brand .brand-copy small { color: rgba(255, 255, 255, 0.42); }
.footer-grid > p { margin: 0; color: rgba(255, 255, 255, 0.44); font-size: var(--type-body); line-height: 1.6; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 20px; }
.footer-links a { color: rgba(255, 255, 255, 0.65); font-size: var(--type-body); }
.footer-links a:hover { color: var(--orange-400); }
.footer-bottom { min-height: 54px; border-top: 1px solid rgba(255, 255, 255, 0.08); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255, 255, 255, 0.34); font-size: var(--type-meta); }

.mobile-cta { display: none; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}

.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr); gap: 30px; }
  .hero h1 { font-size: clamp(46px, 5.2vw, 65px); }
  .hero-stage { min-height: 540px; }
  .document-card { width: 310px; }
  .dashboard-card { width: 430px; }
  .problem-layout { grid-template-columns: 0.8fr 1.2fr; gap: 45px; }
  .problem-contrast { grid-template-columns: 1fr 32px 1fr; padding: 18px; }
  .contrast-before, .contrast-after { padding: 22px; }
  .chaos-stack i { width: 118px; }
  .product-layout { grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: 46px; }
  .product-copy { grid-template-columns: 1fr 0.82fr; gap: 50px; }
  .product-window { min-height: 560px; }
  .window-layout { min-height: 486px; grid-template-columns: 140px 1fr; }
  .window-nav { min-height: 466px; }
  .offer-layout { gap: 70px; }
}

@media (max-width: 900px) {
  :root { --section-pad: clamp(76px, 13vw, 110px); }
  .container { width: min(calc(100% - 36px), var(--w)); }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-context { display: none; }
  .header-inner > .button { display: none; }

  .hero { min-height: auto; }
  .hero-grid { min-height: 0; padding-block: 82px 45px; grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(48px, 9vw, 72px); }
  .hero-lead { max-width: 650px; }
  .hero-stage { width: min(100%, 680px); min-height: 590px; margin-inline: auto; }
  .document-card { width: 330px; }
  .dashboard-card { width: 490px; }

  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .facts article { padding: 30px; border-bottom: 1px solid rgba(255,255,255,.09); }
  .facts article:nth-child(2) { border-right: 0; }
  .facts article:nth-child(3) { padding-left: 0; border-bottom: 0; }
  .facts article:nth-child(4) { padding-right: 0; border-bottom: 0; }

  .problem-layout, .product-layout, .offer-layout, .faq-layout { grid-template-columns: 1fr; }
  .problem-layout { gap: 55px; }
  .problem-contrast { width: min(100%, 700px); margin-inline: auto; }

  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 310px; }
  .method-icon { margin-top: 38px; }
  .method-card h3 { max-width: 480px; }

  .product-layout { gap: 42px; }
  .product-copy { max-width: 700px; display: block; }
  .product-copy > p { max-width: 650px; padding-bottom: 0; }
  .product-window, .feature-list { grid-column: auto; }
  .product-window { width: min(100%, 760px); margin-inline: auto; }
  .feature-list { width: min(100%, 760px); margin-inline: auto; }

  .edital-heading { grid-template-columns: 1fr; gap: 25px; }
  .edital-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 35px; }
  .edital-timeline article:nth-child(2)::before { display: none; }
  .requirements { grid-template-columns: repeat(2, 1fr); }

  .included-card, .included-card.large, .included-card:nth-child(2), .included-card.final { grid-column: span 6; }

  .offer-copy { max-width: 760px; }
  .price-card { width: min(100%, 560px); }

  .faq-layout { gap: 55px; }
  .faq-copy { position: static; }
  .faq-side-card { width: min(100%, 480px); }

  .footer-grid { grid-template-columns: 1fr; justify-items: center; gap: 26px; }
  .footer-links { justify-content: center; }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 68px;
    padding: 9px 9px 9px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    background: rgba(17, 18, 22, 0.94);
    color: white;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 46px rgba(11, 13, 16, 0.28);
    transform: translateY(130%);
    transition: transform .35s var(--ease);
  }

  .mobile-cta.visible { transform: translateY(0); }
  .mobile-cta > div { display: grid; line-height: 1.25; }
  .mobile-cta > div span { color: rgba(255,255,255,.5); font-size: var(--type-meta); text-transform: uppercase; letter-spacing: .08em; }
  .mobile-cta > div b { font-size: var(--type-body); font-weight: 600; }
  .mobile-cta .button { background: var(--accent); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--w)); }
  .site-header { background: rgba(255,255,255,.93); }
  .header-inner { min-height: 69px; }
  .brand-copy { font-size: var(--type-body); }
  .brand-mark { width: 37px; height: 35px; }

  .hero { padding-top: 69px; }
  .hero::before { opacity: .2; -webkit-mask-image: linear-gradient(180deg, transparent 0, black 45%, transparent 100%); mask-image: linear-gradient(180deg, transparent 0, black 45%, transparent 100%); }
  .hero-grid { padding-block: 54px 34px; gap: 37px; }
  .eyebrow.live { font-size: var(--type-meta); }
  .hero h1 { margin-block: 20px 17px; font-size: clamp(42px, 12vw, 58px); line-height: 1.01; }
  .hero-lead { font-size: var(--type-body); }
  .hero-action { margin-top: 27px; display: grid; gap: 13px; }
  .hero-action .button { width: 100%; }
  .hero-action > p { grid-template-columns: auto 1fr; align-items: center; gap: 8px; }
  .hero-action > p span { max-width: none; }
  .hero-trust { margin-top: 29px; grid-template-columns: repeat(2, 1fr); gap: 13px; }
  .hero-trust span:last-child { display: none; }
  .hero-stage { min-height: 505px; }
  .document-card { top: 0; left: 2px; width: 72%; min-height: 350px; padding: 18px; transform: rotate(-3deg); }
  .document-title { margin-top: 26px; font-size: 16px; }
  .document-rule { margin-block: 14px 18px; }
  .document-data { margin-top: 20px; }
  .document-foot { display: none; }
  .dashboard-card { right: -16px; bottom: 0; width: 88%; min-height: 300px; }
  .dashboard-head { height: 56px; padding-left: 64px; }
  .dashboard-body { min-height: 244px; grid-template-columns: 48px 1fr; }
  .dashboard-sidebar { gap: 9px; }
  .dashboard-main { padding: 17px 13px 13px; }
  .study-card { min-height: 58px; padding: 8px; }
  .study-card strong { display: none; }
  .queue-row { margin-top: 9px; }
  .queue-row b { max-width: 155px; }
  .flow-line { left: 36%; top: 39%; transform: scale(.72) rotate(19deg); }
  .note-one { left: 45%; }
  .official-note { align-items: flex-start; font-size: var(--type-meta); }
  .official-note span { max-width: 150px; }

  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts article { min-height: 128px; padding: 22px 14px !important; display: grid; gap: 10px; align-content: center; }
  .facts article:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.09); }
  .fact-number { font-size: 25px; }

  .section-intro h2, .section-heading h2, .product-copy h2, .edital-heading h2, .offer-copy h2, .faq-copy h2, .final-inner h2 { font-size: var(--type-title); }

  .problem-contrast { min-height: auto; padding: 12px; grid-template-columns: 1fr; gap: 10px; }
  .contrast-before, .contrast-after { min-height: 310px; padding: 22px; }
  .contrast-arrow { min-height: 36px; transform: rotate(90deg); }
  .chaos-stack { height: 155px; margin-top: 26px; }
  .chaos-stack i { min-height: 42px; width: 132px; padding: 12px; }
  .chaos-stack i:nth-child(2) { top: 42px; }
  .chaos-stack i:nth-child(3) { top: 85px; }
  .chaos-stack i:nth-child(4) { top: 120px; }
  .focus-ring { width: 140px; height: 140px; margin-top: 33px; }

  .section-heading { margin-bottom: 42px; }
  .method-card { min-height: 330px; padding: 26px; }
  .method-icon { width: 92px; height: 92px; margin-top: 30px; border-radius: 22px; }
  .method-cta { align-items: flex-start; flex-direction: column; }

  .product-window { min-height: 510px; border-radius: 20px; }
  .window-bar { height: 62px; }
  .window-layout { min-height: 448px; padding: 8px; grid-template-columns: 1fr; }
  .window-nav { display: none; }
  .window-content { min-height: 432px; padding: 18px; }
  .window-grid { grid-template-columns: 1fr; }
  .mini-panel { min-height: 112px; }

  .edital-timeline { margin-top: 52px; padding: 24px 22px; grid-template-columns: 1fr; row-gap: 0; }
  .edital-timeline article { min-height: 120px; padding-left: 42px; padding-right: 0; }
  .edital-timeline article::before { display: block !important; left: 9px; right: auto; top: 25px; bottom: -25px; width: 1px; height: auto; }
  .edital-timeline article:last-child::before { display: none !important; }
  .edital-timeline article > span { display: block; }
  .edital-timeline article > i { position: absolute; left: 0; top: 15px; margin: 0; }
  .edital-timeline article > div { margin-top: 10px; }
  .requirements { grid-template-columns: 1fr; }
  .requirements > div, .requirements > a { min-height: 150px; }

  .included-grid { grid-template-columns: 1fr; }
  .included-card, .included-card.large, .included-card:nth-child(2), .included-card.final { grid-column: auto; min-height: 270px; }
  .route-visual { position: relative; top: auto; right: auto; width: 100%; margin: 32px 0 46px; }
  .included-card.large h3 { margin-top: auto; }
  .included-card.final { min-height: 270px; }

  .offer-assurances { grid-template-columns: 1fr; }
  .offer-assurances span { min-height: 60px; }
  .price-card { padding: 29px 24px; }
  .price strong { font-size: 84px; }

  .faq-list summary { font-size: var(--type-body); }
  .faq-list details > p { margin-right: 24px; }

  .final-inner h2 br { display: none; }
  .final-inner .button { width: 100%; }
  .footer-bottom { padding-block: 18px 90px; align-items: flex-start; flex-direction: column; }

  .mobile-cta { left: 8px; right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); }
  .mobile-cta > div span { display: none; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 39px; }
  .button { padding-left: 16px; gap: 11px; font-size: var(--type-body); }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust span:nth-child(2) { display: none; }
  .document-card { width: 76%; }
  .dashboard-card { width: 94%; }
  .document-data div { padding-inline: 4px; }
  .mobile-cta > div { display: none; }
  .mobile-cta .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .reading-progress, .mobile-cta { display: none !important; }
  .hero { min-height: auto; padding-top: 0; }
  .section { break-inside: avoid; }
}
