:root {
  --orange: #ee6842;
  --orange-deep: #df5631;
  --orange-soft: #f5a17f;
  --ink: #171716;
  --muted: #6c6964;
  --cream: #f7f4ef;
  --paper: #fffefa;
  --line: rgba(23, 23, 22, 0.1);
  --shadow: 0 28px 90px rgba(73, 27, 13, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.ambient {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
  display: none;
}

.ambient-one { left: -12rem; top: 12rem; background: #ffb08d; }
.ambient-two { right: -12rem; top: 42rem; background: #d5411f; }

.site-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--cream);
  box-shadow: none;
}

.nav {
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-left: max(42px, calc((100vw - 1180px) / 2 + 42px));
  padding-right: max(42px, calc((100vw - 1180px) / 2 + 42px));
  background: rgba(255, 254, 250, 0.94);
  border-bottom: 1px solid rgba(23, 23, 22, 0.05);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
}

.brand-mark img { width: 100%; height: 100%; }
.brand-dot { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 13px; font-weight: 600; color: #3f3e3a; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange-deep); }
.nav-cta { justify-self: end; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.button:hover { transform: translateY(-2px); }
.button span { font-size: 17px; line-height: 1; }
.button-dark { color: white; background: var(--ink); box-shadow: 0 9px 20px rgba(23, 23, 22, 0.14); }
.button-dark:hover { background: #2c2b28; box-shadow: 0 13px 26px rgba(23, 23, 22, 0.2); }
.button-light { width: 100%; color: var(--ink); background: white; }
.button-outline { color: var(--ink); border: 1px solid rgba(23, 23, 22, 0.14); background: rgba(255, 255, 255, 0.58); }
.button-outline:hover { border-color: rgba(23, 23, 22, 0.24); background: white; box-shadow: 0 10px 22px rgba(23, 23, 22, 0.08); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 650px;
  display: grid;
  grid-template-columns: 52% 48%;
  padding: 86px 68px 70px;
  background:
    radial-gradient(circle at 83% 35%, rgba(238, 104, 66, 0.12), transparent 36%),
    linear-gradient(180deg, #f7f4ef 0%, #f8f5f0 74%, rgba(247, 244, 239, 0.18) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 2; max-width: 570px; }

.eyebrow,
.section-number {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #4f4c47;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(238, 104, 66, 0.12);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 22px 0 24px;
  font-size: clamp(48px, 5vw, 73px);
  line-height: 0.99;
  letter-spacing: -0.072em;
  font-weight: 800;
}

h1 span { color: var(--orange-deep); }

.hero-text {
  max-width: 520px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-points { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 31px; }
.hero-points span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,0.62); font-size: 11px; font-weight: 700; }
.hero-points i { color: var(--orange); font-style: normal; margin-right: 5px; }

.hero-actions { display: flex; align-items: center; gap: 12px; }
.text-link { font-size: 12px; font-weight: 800; border-bottom: 1px solid rgba(23,23,22,0.35); padding: 8px 0 6px; }
.text-link span { color: var(--orange); margin-left: 4px; }

.trust-line { display: flex; align-items: center; gap: 14px; margin-top: 35px; }
.trust-line p { margin: 0; color: #79756f; font-size: 10px; line-height: 1.55; }
.trust-line strong { color: #353431; font-weight: 700; }
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack span { width: 28px; height: 28px; display: grid; place-items: center; margin-left: -8px; border: 2px solid var(--cream); border-radius: 50%; color: white; background: #262522; font-size: 8px; font-weight: 800; }
.avatar-stack span:nth-child(2) { background: var(--orange); }
.avatar-stack span:nth-child(3) { color: var(--ink); background: #ded9d1; }

.hero-visual { position: relative; min-height: 500px; }
.visual-glow { position: absolute; inset: 15% 4% 7% 3%; border-radius: 50%; background: rgba(255,255,255,0.96); filter: blur(28px); }
.orbit { position: absolute; border: 1px solid rgba(238,104,66,0.15); border-radius: 50%; }
.orbit-one { width: 340px; height: 340px; left: 52%; top: 50%; transform: translate(-50%,-50%); }
.orbit-two { width: 470px; height: 470px; left: 52%; top: 50%; transform: translate(-50%,-50%); opacity: 0.45; }

.center-mark {
  position: absolute;
  z-index: 4;
  left: 52%;
  top: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(238,104,66,0.16);
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 28px 60px rgba(103, 49, 27, 0.16);
}

.center-mark img { width: 72px; height: 72px; }
.center-mark span { font-size: 10px; font-weight: 800; letter-spacing: -0.03em; }

.model-tile,
.app-tile {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23,23,22,0.07);
  box-shadow: 0 18px 38px rgba(78,50,38,0.08);
  backdrop-filter: blur(12px);
}

.model-tile { width: 154px; padding: 15px; border-radius: 16px; }
.model-tile strong, .model-tile small, .model-tile span { display: block; }
.tile-kicker { margin-bottom: 7px; color: var(--orange-deep); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.model-tile strong { font-size: 14px; letter-spacing: -0.04em; }
.model-tile small { margin-top: 5px; color: #8b8780; font-size: 8px; }
.tile-opus { left: 2%; top: 14%; transform: rotate(-3deg); }
.tile-sonnet { right: -3%; top: 17%; transform: rotate(3deg); }
.tile-haiku { right: 2%; bottom: 11%; transform: rotate(-2deg); }

.app-tile { width: 82px; height: 82px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 17px; color: #77736d; }
.app-tile span { color: #aaa59e; font-size: 21px; font-weight: 800; }
.app-tile small { font-size: 8px; }
.app-roo { left: 7%; bottom: 17%; opacity: 0.78; }
.app-code { right: 3%; top: 42%; }
.app-open { left: 29%; bottom: -2%; opacity: 0.58; }
.app-api { left: 34%; top: 3%; opacity: 0.45; }

.feature-panel {
  position: relative;
  z-index: 4;
  width: min(1124px, calc(100% - 56px));
  margin: 0 auto;
  min-height: 520px;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  overflow: hidden;
  padding: 70px 68px;
  border-radius: 24px;
  background: var(--paper);
}

.feature-panel::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -100px;
  bottom: -190px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(75px);
  opacity: 0.54;
}

.section-copy { position: relative; z-index: 2; padding-right: 50px; }
.section-copy h2,
.models-head h2,
.price-copy h2,
.faq-section h2,
.final-cta h2 {
  margin: 20px 0 18px;
  font-size: clamp(38px, 4vw, 57px);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.section-copy > p,
.models-head > p,
.price-copy > p { color: var(--muted); font-size: 13px; line-height: 1.7; }

.check-list { display: grid; gap: 14px; margin: 29px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; }
.check-list span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--orange); font-size: 10px; }

.terminal-card { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(23,23,22,0.11); border-radius: 18px; background: #1c1c1b; box-shadow: 0 28px 70px rgba(23,23,22,0.21); }
.terminal-top { height: 51px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 17px; color: #918e88; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 9px; }
.terminal-dots { display: flex; gap: 6px; }
.terminal-dots i { width: 7px; height: 7px; border-radius: 50%; background: #4a4946; }
.terminal-dots i:first-child { background: var(--orange); }
.copy-button { justify-self: end; padding: 7px 10px; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; color: #bdb9b2; background: transparent; font-size: 8px; cursor: pointer; }
.copy-button:hover { color: white; border-color: rgba(255,255,255,0.24); }
.terminal-card pre { margin: 0; min-height: 235px; padding: 35px 31px; overflow-x: auto; color: #f5f2ec; font: 12px/2 "SFMono-Regular", Consolas, monospace; }
.code-muted { color: #706d68; }
.code-accent { color: #ff9270; }
.terminal-footer { height: 47px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; color: #77746f; border-top: 1px solid rgba(255,255,255,0.07); font-size: 8px; }
.terminal-footer span { display: flex; align-items: center; gap: 7px; }
.terminal-footer i { width: 6px; height: 6px; border-radius: 50%; background: #68bb7b; box-shadow: 0 0 0 4px rgba(104,187,123,0.08); }
.terminal-footer strong { color: #aaa69f; font-weight: 500; }

.models-section { width: min(1180px, 100%); margin: 0 auto; padding: 116px 68px 96px; }
.models-head { display: grid; grid-template-columns: 1fr 0.55fr; gap: 80px; align-items: end; margin-bottom: 46px; }
.models-head h2 { margin-bottom: 0; }
.models-head > p { margin-bottom: 8px; }
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.model-card { min-height: 336px; display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.55); }
.model-card.featured { color: white; background: var(--orange); border-color: transparent; box-shadow: 0 20px 45px rgba(223,86,49,0.22); }
.model-icon { width: 47px; height: 47px; display: grid; place-items: center; margin-bottom: 33px; border-radius: 12px; background: white; }
.model-icon img { width: 32px; }
.icon-soft { color: var(--orange-deep); background: #f2e6df; font-weight: 800; }
.model-tag { margin-bottom: 10px; color: #8a857e; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; }
.featured .model-tag { color: rgba(255,255,255,0.64); }
.model-card h3 { margin-bottom: 12px; font-size: 21px; letter-spacing: -0.05em; }
.model-card p { color: #716e68; font-size: 10px; line-height: 1.7; }
.featured p { color: rgba(255,255,255,0.74); }
.model-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); }
.featured .model-meta { border-color: rgba(255,255,255,0.16); }
.model-meta span { color: #8c8881; font: 9px "SFMono-Regular", Consolas, monospace; }
.featured .model-meta span { color: rgba(255,255,255,0.7); }
.model-meta strong { font-size: 20px; }

.pricing-panel { width: min(1124px, calc(100% - 56px)); min-height: 540px; display: grid; grid-template-columns: 1fr 390px; gap: 90px; align-items: center; margin: 0 auto; padding: 72px 68px; overflow: hidden; border-radius: 24px; color: white; background: #1b1b1a; }
.section-number.light { color: rgba(255,255,255,0.45); }
.price-copy > p { max-width: 430px; color: rgba(255,255,255,0.54); }
.price-card { padding: 28px; border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)); box-shadow: inset 0 1px rgba(255,255,255,0.12); }
.price-label { color: rgba(255,255,255,0.5); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.price { display: flex; align-items: flex-start; margin: 8px 0 2px; font-size: 74px; line-height: 1; font-weight: 800; letter-spacing: -0.07em; }
.price span { margin: 9px 4px 0 0; color: var(--orange); font-size: 24px; }
.price-card > p { color: rgba(255,255,255,0.46); font-size: 9px; }
.price-divider { height: 1px; margin: 23px 0; background: rgba(255,255,255,0.1); }
.price-card ul { display: grid; gap: 13px; margin: 0 0 25px; padding: 0; list-style: none; }
.price-card li { display: flex; justify-content: space-between; color: rgba(255,255,255,0.68); font-size: 10px; }
.price-card li strong { color: white; }

.steps-section { width: min(1180px, 100%); margin: 0 auto; padding: 110px 68px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.steps-grid article { min-height: 210px; padding: 27px; border-top: 1px solid var(--ink); background: rgba(255,255,255,0.3); }
.steps-grid article > span { color: var(--orange); font-size: 10px; font-weight: 800; }
.steps-grid h3 { margin: 48px 0 11px; font-size: 19px; letter-spacing: -0.05em; }
.steps-grid p { margin-bottom: 0; color: var(--muted); font-size: 10px; line-height: 1.65; }

.faq-section { width: min(1180px, 100%); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 90px; margin: 0 auto; padding: 20px 68px 110px; }
.faq-section h2 { font-size: 48px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 36px 22px 0; list-style: none; font-size: 13px; font-weight: 700; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; right: 5px; color: var(--orange); font-size: 18px; transition: transform 0.2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 590px; padding: 0 30px 21px 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

.final-cta { width: min(1124px, calc(100% - 56px)); display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 34px; margin: 0 auto 28px; padding: 60px; border-radius: 22px; background: var(--paper); }
.final-cta > img { width: 78px; }
.final-cta > div > span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; }
.final-cta h2 { margin: 8px 0 0; font-size: 41px; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-top: 34px; padding-bottom: 34px; padding-left: max(42px, calc((100vw - 1180px) / 2 + 42px)); padding-right: max(42px, calc((100vw - 1180px) / 2 + 42px)); color: #8d8982; font-size: 9px; background: #ece8e1; }
.footer-brand { color: var(--ink); }
footer p { margin: 0; }
footer > span { justify-self: end; }

.toast { position: fixed; z-index: 20; left: 50%; bottom: 28px; padding: 12px 17px; border-radius: 9px; color: white; background: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,0.2); font-size: 11px; opacity: 0; transform: translate(-50%, 16px); pointer-events: none; transition: 0.25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 960px) {
  .site-shell { width: 100%; margin: 0; border-radius: 0; }
  .nav { grid-template-columns: 1fr auto; padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { width: 38px; height: 38px; display: grid; align-content: center; gap: 6px; padding: 0 9px; border: 0; border-radius: 8px; background: var(--ink); }
  .menu-toggle span { display: block; height: 1px; background: white; }
  .nav.menu-open { height: auto; grid-template-columns: 1fr auto; padding-top: 20px; padding-bottom: 20px; }
  .nav.menu-open .nav-links { grid-column: 1 / -1; display: grid; gap: 0; width: 100%; margin-top: 20px; }
  .nav.menu-open .nav-links a { padding: 13px 0; border-top: 1px solid var(--line); }
  .hero { grid-template-columns: 1fr; padding: 65px 38px 20px; }
  .hero-copy { max-width: 650px; }
  .hero-visual { min-height: 520px; }
  .feature-panel { grid-template-columns: 1fr; gap: 48px; padding: 58px 38px; }
  .section-copy { padding-right: 0; }
  .models-section, .steps-section { padding: 90px 38px; }
  .models-head { grid-template-columns: 1fr; gap: 18px; }
  .model-grid { grid-template-columns: 1fr; }
  .model-card { min-height: 280px; }
  .pricing-panel { grid-template-columns: 1fr; gap: 45px; padding: 60px 38px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 180px; }
  .faq-section { grid-template-columns: 1fr; gap: 25px; padding: 10px 38px 90px; }
  .final-cta { grid-template-columns: 70px 1fr; padding: 40px; }
  .final-cta .button { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .site-shell { width: 100%; margin: 0; border-radius: 0; }
  .nav { height: 68px; }
  .hero { padding: 54px 22px 0; }
  h1 { font-size: 46px; }
  .hero-text { font-size: 14px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-visual { min-height: 430px; margin: 20px -12px 0; transform: scale(0.88); }
  .feature-panel, .pricing-panel, .final-cta { width: calc(100% - 24px); margin-left: 12px; margin-right: 12px; }
  .feature-panel { padding: 45px 22px; }
  .section-copy h2, .models-head h2, .price-copy h2, .faq-section h2 { font-size: 38px; }
  .terminal-card pre { padding: 27px 20px; font-size: 9px; }
  .models-section, .steps-section { padding: 78px 22px; }
  .pricing-panel { padding: 46px 22px; }
  .price { font-size: 64px; }
  .faq-section { padding: 0 22px 78px; }
  .final-cta { grid-template-columns: 54px 1fr; gap: 18px; padding: 32px 22px; }
  .final-cta > img { width: 52px; }
  .final-cta h2 { font-size: 30px; }
  footer { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .footer-brand, footer > span { justify-self: center; }
}

@media (prefers-reduced-motion: no-preference) {
  .center-mark { animation: float 5s ease-in-out infinite; }
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 9px)); }
}

@keyframes drift-one {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-8px); }
}

@keyframes drift-two {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(9px); }
}

/* Centered landing layout */
.nav {
  position: relative;
  z-index: 20;
  width: min(1400px, calc(100% - 72px));
  height: 64px;
  margin: 24px auto 0;
  padding: 0 16px 0 22px;
  border: 1px solid rgba(23, 23, 22, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 42px rgba(32, 30, 27, 0.08);
}

.nav .button { min-height: 44px; border-radius: 999px; }

.hero {
  position: relative;
  width: min(1440px, 100%);
  min-height: 930px;
  display: block;
  margin: 0 auto;
  padding: 112px 40px 80px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 15% 42%, rgba(144, 224, 216, 0.22), transparent 22%),
    radial-gradient(circle at 86% 44%, rgba(247, 214, 118, 0.22), transparent 24%),
    radial-gradient(circle at 77% 27%, rgba(238, 104, 66, 0.09), transparent 20%),
    #fbfaf7;
}

.hero::after { display: none; }

.hero-center {
  position: relative;
  z-index: 4;
  width: min(920px, 100%);
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #55524d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-badge span {
  padding: 8px 11px;
  border-radius: 9px;
  color: white;
  background: var(--orange);
  box-shadow: 0 7px 18px rgba(238, 104, 66, 0.2);
  transform: rotate(-4deg);
}

.hero h1 {
  margin: 0 auto 24px;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero h1 span { color: var(--orange-deep); }

.hero .hero-text {
  max-width: 680px;
  margin: 0 auto 30px;
  color: #77736d;
  font-size: 15px;
  line-height: 1.7;
}

.hero-main-button {
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
}

.client-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.client-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border: 1px solid rgba(23, 23, 22, 0.06);
  border-radius: 999px;
  color: #4f4c47;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 8px 22px rgba(32,30,27,0.05);
  font-size: 10px;
  font-weight: 700;
}

.client-pills b { color: var(--orange); font-size: 11px; }

.hero-terminal {
  width: min(760px, 100%);
  min-height: 225px;
  margin: 68px auto 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 22, 0.06);
  border-radius: 22px;
  text-align: left;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 26px 70px rgba(44, 38, 31, 0.12);
  backdrop-filter: blur(15px);
}

.hero-terminal-top {
  height: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid rgba(23,23,22,0.05);
  color: #a19d95;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-terminal-top .terminal-dots i:nth-child(1) { background: #ff7d66; }
.hero-terminal-top .terminal-dots i:nth-child(2) { background: #f2ca66; }
.hero-terminal-top .terminal-dots i:nth-child(3) { background: #67d49b; }

.hero-terminal-body { padding: 26px 22px 34px; }
.terminal-path { margin-bottom: 15px; color: #8290a5; font: 11px "SFMono-Regular", Consolas, monospace; }
.hero-terminal pre { display: inline; margin: 0; white-space: pre-wrap; color: #171716; font: 12px/1.9 "SFMono-Regular", Consolas, monospace; }
.hero-terminal code { color: #171716; }

.typing-cursor {
  display: inline-block;
  width: 7px;
  height: 15px;
  margin-left: 2px;
  vertical-align: -3px;
  border-radius: 2px;
  background: var(--orange);
  animation: cursor-blink 0.75s steps(1) infinite;
}

.floating-icon {
  position: absolute;
  z-index: 3;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23,23,22,0.05);
  border-radius: 24px;
  color: #262522;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 22px 52px rgba(51,45,38,0.09);
  backdrop-filter: blur(12px);
}

.floating-icon img { width: 44px; }
.floating-icon span { font: 700 22px "SFMono-Regular", Consolas, monospace; }
.float-mark { left: 7%; top: 130px; }
.float-terminal { left: 12%; top: 390px; }
.float-code { right: 8%; top: 165px; }
.float-monitor { right: 12%; top: 415px; }

.hero-aura {
  position: absolute;
  z-index: 1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}

.aura-left { left: -100px; top: 300px; background: #74d8ce; }
.aura-right { right: -100px; top: 300px; background: #f4cc66; }

@keyframes cursor-blink {
  0%, 52% { opacity: 1; }
  53%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: no-preference) {
  .float-mark, .float-code { animation: icon-float-a 6s ease-in-out infinite; }
  .float-terminal, .float-monitor { animation: icon-float-b 7s ease-in-out infinite; }
}

@keyframes icon-float-a {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes icon-float-b {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(11px) rotate(-2deg); }
}

@media (max-width: 960px) {
  .nav { width: calc(100% - 32px); height: 62px; margin-top: 16px; padding: 0 14px 0 20px; }
  .hero { min-height: 880px; padding: 95px 24px 70px; }
  .floating-icon { width: 72px; height: 72px; border-radius: 20px; opacity: 0.65; }
  .floating-icon img { width: 34px; }
  .float-mark { left: 3%; top: 135px; }
  .float-code { right: 3%; top: 170px; }
  .float-terminal { left: 3%; top: 410px; }
  .float-monitor { right: 3%; top: 425px; }
}

@media (max-width: 620px) {
  .nav { border-radius: 18px; }
  .hero { min-height: 810px; padding: 76px 20px 56px; }
  .hero h1 { font-size: 45px; }
  .hero .hero-text { font-size: 13px; }
  .hero-badge { font-size: 8px; }
  .client-pills span { padding: 8px 11px; font-size: 8px; }
  .floating-icon { display: none; }
  .hero-terminal { min-height: 235px; margin-top: 50px; border-radius: 17px; }
  .hero-terminal-body { padding: 24px 17px 30px; }
  .hero-terminal pre { font-size: 9px; line-height: 2; }
  .terminal-path { font-size: 9px; }
}

/* Original framed Funda layout — intentionally centered on the page */
body {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 178, 143, 0.32), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(196, 57, 25, 0.22), transparent 30%),
    var(--orange);
}

.ambient { display: block; }

.site-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 0;
  margin: 70px auto;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.nav {
  position: relative;
  z-index: 10;
  width: auto;
  height: 78px;
  margin: 0;
  padding: 0 42px;
  border: 0;
  border-bottom: 1px solid rgba(23, 23, 22, 0.05);
  border-radius: 0;
  background: rgba(255, 254, 250, 0.94);
  box-shadow: none;
}

.nav .button { min-height: 48px; border-radius: 10px; }

.hero {
  position: relative;
  width: auto;
  min-height: 650px;
  display: grid;
  grid-template-columns: 52% 48%;
  margin: 0;
  padding: 86px 68px 70px;
  overflow: visible;
  text-align: left;
  background:
    radial-gradient(circle at 83% 35%, rgba(238, 104, 66, 0.12), transparent 36%),
    linear-gradient(180deg, #f7f4ef 0%, #f8f5f0 74%, rgba(247, 244, 239, 0.18) 100%);
}

.hero::after { display: block; }

.hero h1 {
  margin: 22px 0 24px;
  font-size: clamp(48px, 5vw, 73px);
  line-height: 0.99;
  letter-spacing: -0.072em;
}

.hero .hero-text {
  max-width: 520px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature-panel {
  width: auto;
  margin: 0 28px;
}

.models-section {
  width: auto;
  margin: 0;
  padding: 116px 68px 96px;
}

.pricing-panel {
  width: auto;
  margin: 0 28px;
}

.steps-section {
  width: auto;
  margin: 0;
  padding: 110px 68px;
}

.faq-section {
  width: auto;
  margin: 0;
  padding: 20px 68px 110px;
}

.final-cta {
  width: auto;
  margin: 0 28px 28px;
}

footer {
  padding: 34px 42px;
}

.terminal-card .typing-cursor {
  height: 14px;
  vertical-align: -2px;
}

@media (max-width: 960px) {
  .site-shell { width: min(100% - 24px, 840px); margin: 28px auto; border-radius: 22px; }
  .nav { width: auto; height: 78px; margin: 0; padding: 0 24px; border-radius: 0; }
  .hero { min-height: 650px; grid-template-columns: 1fr; padding: 65px 38px 20px; text-align: left; }
  .hero h1 { font-size: clamp(48px, 8vw, 70px); }
  .hero .hero-text { margin-left: 0; margin-right: 0; }
  .feature-panel { width: auto; margin: 0 28px; }
  .models-section, .steps-section { width: auto; margin: 0; padding: 90px 38px; }
  .pricing-panel { width: auto; margin: 0 28px; }
  .faq-section { width: auto; margin: 0; padding: 10px 38px 90px; }
  .final-cta { width: auto; margin: 0 28px 28px; }
}

@media (max-width: 620px) {
  .site-shell { width: 100%; margin: 0; border-radius: 0; }
  .nav { height: 68px; border-radius: 0; }
  .hero { min-height: 0; padding: 54px 22px 0; }
  .hero h1 { font-size: 46px; }
  .hero .hero-text { font-size: 14px; }
  .feature-panel, .pricing-panel, .final-cta { width: auto; margin-left: 12px; margin-right: 12px; }
}

/* Balanced desktop frame: wide content, narrow neutral gutters */
body {
  background:
    radial-gradient(circle at 0% 18%, rgba(238, 104, 66, 0.13), transparent 25%),
    radial-gradient(circle at 100% 78%, rgba(238, 104, 66, 0.1), transparent 28%),
    #eee8e2;
}

.ambient { opacity: 0.13; }

.site-shell {
  width: min(1600px, calc(100% - 32px));
  margin: 24px auto;
  border-radius: 24px;
  box-shadow: 0 20px 70px rgba(73, 45, 33, 0.12);
}

@media (max-width: 960px) {
  .site-shell {
    width: calc(100% - 16px);
    margin: 8px auto;
    border-radius: 18px;
  }
}

/* Compact quick-start section in the agentai.surf visual language. */
.steps-section {
  position: relative;
  padding-top: 72px;
  padding-bottom: 72px;
}

.journey-head,
.journey-grid,
.privacy-card {
  width: min(1320px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.journey-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: end;
  gap: 12px 42px;
  margin-bottom: 28px;
}

.journey-head .section-number {
  grid-column: 1 / -1;
}

.journey-head h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.journey-head h2 br { display: none; }

.journey-head > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.journey-card {
  position: relative;
  min-height: 166px;
  padding: 20px 21px;
  overflow: visible;
  border: 1px solid rgba(94, 63, 49, 0.08);
  border-radius: 21px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 246, 0.82));
  box-shadow: 0 15px 35px rgba(78, 50, 38, 0.075);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.journey-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 42px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-soft));
}

.journey-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 3;
  right: -15px;
  top: 50%;
  width: 12px;
  color: rgba(223, 86, 49, 0.55);
  font-size: 17px;
  font-weight: 800;
  transform: translateY(-50%);
}

.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(78, 50, 38, 0.11);
}

.step-index {
  color: var(--orange-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.step-icon {
  position: absolute;
  right: 18px;
  top: 17px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--orange-deep);
  background: rgba(238, 104, 66, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.journey-card h3 {
  margin: 29px 0 8px;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.55;
}

.privacy-card {
  position: relative;
  min-height: 142px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 23px;
  margin-top: 20px;
  padding: 24px 30px;
  overflow: hidden;
  border: 1px solid rgba(94, 63, 49, 0.08);
  border-radius: 25px;
  background:
    radial-gradient(circle at 92% 20%, rgba(238, 104, 66, 0.14), transparent 27%),
    linear-gradient(120deg, rgba(255,255,255,0.96), rgba(255,248,243,0.9));
  box-shadow: 0 18px 44px rgba(78, 50, 38, 0.08);
}

.privacy-card::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -65px;
  width: 190px;
  height: 190px;
  background: url("./claude-mark.svg") center / contain no-repeat;
  opacity: 0.035;
  transform: rotate(10deg);
}

.privacy-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(223, 86, 49, 0.2);
}

.privacy-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: 8px 34px;
}

.privacy-copy > span {
  grid-column: 1 / -1;
  color: var(--orange-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.privacy-copy h3 {
  grid-row: 2 / 4;
  margin: 0;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.privacy-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.privacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.privacy-points span {
  padding: 7px 10px;
  border: 1px solid rgba(223, 86, 49, 0.09);
  border-radius: 999px;
  color: #4d4944;
  background: rgba(255,255,255,0.7);
  font-size: 9.5px;
  font-weight: 700;
}

.privacy-points i {
  margin-right: 5px;
  color: var(--orange-deep);
  font-style: normal;
}

/* Keep the whole page on one uninterrupted background. */
.site-shell {
  background:
    radial-gradient(circle at 82% 17%, rgba(238, 104, 66, 0.09), transparent 29%),
    #f7f4ef;
}

.hero { background: transparent; }
.hero::after { display: none; }

@media (max-width: 1080px) {
  .journey-head { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-card::after { display: none; }
  .privacy-copy { grid-template-columns: 1fr; }
  .privacy-copy h3 { grid-row: auto; }
}

@media (max-width: 620px) {
  .steps-section { padding-top: 58px; padding-bottom: 58px; }
  .journey-head { margin-bottom: 22px; }
  .journey-head h2 br { display: initial; }
  .journey-grid { grid-template-columns: 1fr; gap: 12px; }
  .journey-card { min-height: 148px; }
  .privacy-card { grid-template-columns: 1fr; padding: 24px 22px; }
  .privacy-icon { width: 44px; height: 44px; border-radius: 14px; }
  .privacy-copy h3 { font-size: 25px; }
}

@media (max-width: 620px) {
  .site-shell { width: 100%; margin: 0; border-radius: 0; }
}

/* Larger animated model orbit */
.hero-visual { min-height: 520px; }

.center-mark {
  width: 172px;
  height: 172px;
  border-radius: 30px;
}

.center-mark img { width: 82px; height: 82px; }
.center-mark span { font-size: 11px; }

.model-tile {
  width: 188px;
  min-height: 103px;
  padding: 19px;
  border-radius: 19px;
}

.model-tile strong { font-size: 17px; }
.model-tile small { margin-top: 7px; font-size: 9px; }
.tile-kicker { margin-bottom: 9px; font-size: 9px; }

.tile-opus { left: -5%; top: 12%; }
.tile-sonnet { right: -7%; top: 16%; }
.tile-haiku { right: -3%; bottom: 7%; }

.app-tile {
  width: 108px;
  height: 108px;
  gap: 9px;
  border-radius: 22px;
}

.app-tile span { color: #6f6b65; font-size: 25px; }
.app-tile small { color: #77736d; font-size: 9px; font-weight: 700; }
.app-code { right: 2%; top: 44%; }
.app-roo { left: 2%; bottom: 15%; opacity: 0.9; }
.app-open { left: 31%; bottom: -3%; opacity: 0.82; }

.orbit-one { width: 370px; height: 370px; }
.orbit-two { width: 510px; height: 510px; }

.orbit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 4px 14px rgba(238, 104, 66, 0.34);
}

.orbit-two::before {
  left: 12%;
  top: 82%;
  width: 8px;
  height: 8px;
  opacity: 0.65;
}

@media (prefers-reduced-motion: no-preference) {
  .orbit-one { animation: orbit-spin 18s linear infinite; }
  .orbit-two { animation: orbit-spin-reverse 28s linear infinite; }
  .center-mark { animation: mark-breathe 5s ease-in-out infinite; }
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-spin-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes mark-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 28px 60px rgba(103, 49, 27, 0.16); }
  50% { transform: translate(-50%, calc(-50% - 9px)) scale(1.025); box-shadow: 0 36px 78px rgba(238, 104, 66, 0.21); }
}

@keyframes model-float-a {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-11px) rotate(-1deg); }
}

@keyframes model-float-b {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(10px) rotate(1deg); }
}

@keyframes model-float-c {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-9px) rotate(1deg); }
}

@keyframes app-float-a {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(7px, -9px) rotate(2deg); }
}

@keyframes app-float-b {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(-6px, 10px) rotate(-2deg); }
}

@keyframes app-float-c {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(8px, 7px) rotate(2deg); }
}

/* FAQ reveal and accordion motion */
.faq-list details {
  transition: background-color 0.25s ease, padding 0.25s ease;
}

.faq-list details:hover { background: rgba(255,255,255,0.4); }
.faq-list summary { transition: color 0.22s ease, padding-left 0.22s ease; }
.faq-list summary:hover { color: var(--orange-deep); padding-left: 7px; }

.faq-list details p {
  transform-origin: top;
  opacity: 0;
  transform: translateY(-8px);
}

.faq-list details[open] p {
  animation: faq-answer-in 0.32s ease forwards;
}

@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.motion-ready .faq-section .section-number,
.motion-ready .faq-section h2,
.motion-ready .faq-section .faq-list {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.motion-ready .faq-section h2 { transition-delay: 0.08s; }
.motion-ready .faq-section .faq-list { transition-delay: 0.16s; }

.motion-ready .faq-section.is-visible .section-number,
.motion-ready .faq-section.is-visible h2,
.motion-ready .faq-section.is-visible .faq-list {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .model-tile { width: 174px; }
  .app-tile { width: 96px; height: 96px; }
  .tile-opus { left: 1%; }
  .tile-sonnet { right: 0; }
  .tile-haiku { right: 1%; }
}

@media (max-width: 620px) {
  .center-mark { width: 148px; height: 148px; }
  .model-tile { width: 160px; min-height: 94px; padding: 16px; }
  .model-tile strong { font-size: 15px; }
  .app-tile { width: 88px; height: 88px; }
}

/* Keep labels crisp: the rings move, while text cards stay on stable layers. */
.model-tile,
.app-tile {
  animation: none;
  background: rgba(255, 254, 250, 0.97);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 14px 32px rgba(78, 50, 38, 0.09);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s ease,
              border-color 0.32s ease;
}

.model-tile:hover,
.app-tile:hover {
  z-index: 5;
  transform: translate3d(0, -6px, 0);
  border-color: rgba(238, 104, 66, 0.2);
  box-shadow: 0 20px 42px rgba(78, 50, 38, 0.14);
}

.model-tile strong {
  color: #24211e;
  font-size: 18px;
  line-height: 1.15;
}

.model-tile small {
  margin-top: 8px;
  color: #49443e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.tile-kicker {
  color: #db4f29;
  font-size: 9.5px;
}

.app-code,
.app-roo,
.app-open,
.app-api {
  opacity: 1;
}

.app-tile small {
  color: #49443e;
  font-size: 10.5px;
  font-weight: 750;
  line-height: 1.2;
}

@media (max-width: 620px) {
  .model-tile strong { font-size: 16px; }
  .model-tile small { font-size: 10.5px; }
  .app-tile small { font-size: 9.5px; }
}

/* Floating rounded navigation and softly changing page gutters. */
body {
  background:
    radial-gradient(ellipse 12% 24% at 0% 10%, rgba(238, 104, 66, 0.2), transparent 100%),
    radial-gradient(ellipse 12% 28% at 100% 31%, rgba(247, 178, 137, 0.2), transparent 100%),
    radial-gradient(ellipse 11% 25% at 0% 66%, rgba(206, 170, 148, 0.15), transparent 100%),
    radial-gradient(ellipse 12% 25% at 100% 88%, rgba(238, 104, 66, 0.14), transparent 100%),
    linear-gradient(90deg,
      #efd7cd 0%,
      #f4e8e1 4%,
      #f7f4ef 10%,
      #f7f4ef 90%,
      #f4e8e1 96%,
      #efd7cd 100%);
}

.ambient-one {
  left: -15rem;
  top: 5rem;
  opacity: 0.16;
}

.ambient-two {
  right: -15rem;
  top: 58rem;
  opacity: 0.11;
}

.site-shell {
  width: min(1600px, calc(100% - 44px));
  margin: 22px auto 48px;
  border-radius: 34px;
  box-shadow:
    0 30px 100px rgba(73, 45, 33, 0.1),
    0 0 68px 34px rgba(247, 244, 239, 0.94),
    0 0 150px 66px rgba(255, 252, 247, 0.3);
}

.nav {
  width: calc(100% - 44px);
  height: 76px;
  margin: 22px 22px 0;
  padding: 0 28px;
  border: 1px solid rgba(23, 23, 22, 0.055);
  border-radius: 999px;
  background: rgba(255, 254, 251, 0.91);
  box-shadow:
    0 16px 42px rgba(61, 48, 39, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav .button {
  min-height: 48px;
  border-radius: 999px;
}

.hero {
  margin-top: 10px;
}

@media (max-width: 960px) {
  .site-shell {
    width: calc(100% - 20px);
    margin: 10px auto 28px;
    border-radius: 26px;
  }

  .nav {
    width: calc(100% - 28px);
    height: 72px;
    margin: 14px 14px 0;
    padding: 0 22px;
    border-radius: 999px;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .nav {
    width: calc(100% - 16px);
    height: 66px;
    margin: 8px 8px 0;
    padding: 0 17px;
    border-radius: 22px;
  }

  .hero { margin-top: 4px; }
}

/* Full-bleed page: no outer frame or vertical boundary. */
body {
  background: #f7f4ef;
}

.ambient { display: none; }

.site-shell {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: #f7f4ef;
  box-shadow: none;
}

.nav {
  width: min(1556px, calc(100% - 88px));
  margin: 22px auto 0;
}

.hero {
  width: 100%;
  padding-left: max(90px, calc((100vw - 1600px) / 2 + 68px));
  padding-right: max(90px, calc((100vw - 1600px) / 2 + 68px));
}

.feature-panel,
.pricing-panel,
.final-cta {
  margin-left: max(50px, calc((100vw - 1600px) / 2 + 28px));
  margin-right: max(50px, calc((100vw - 1600px) / 2 + 28px));
}

.models-section,
.steps-section,
.faq-section {
  padding-left: max(90px, calc((100vw - 1600px) / 2 + 68px));
  padding-right: max(90px, calc((100vw - 1600px) / 2 + 68px));
}

footer {
  padding-left: max(64px, calc((100vw - 1600px) / 2 + 42px));
  padding-right: max(64px, calc((100vw - 1600px) / 2 + 42px));
}

@media (max-width: 960px) {
  .nav {
    width: calc(100% - 28px);
    margin: 14px auto 0;
  }

  .hero {
    padding-left: 38px;
    padding-right: 38px;
  }

  .feature-panel,
  .pricing-panel,
  .final-cta {
    margin-left: 28px;
    margin-right: 28px;
  }

  .models-section,
  .steps-section,
  .faq-section {
    padding-left: 38px;
    padding-right: 38px;
  }
}

@media (max-width: 620px) {
  .nav {
    width: calc(100% - 16px);
    margin: 8px auto 0;
  }

  .hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .feature-panel,
  .pricing-panel,
  .final-cta {
    margin-left: 12px;
    margin-right: 12px;
  }

  .models-section,
  .steps-section,
  .faq-section {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* Readable type scale: compact layout without microscopic captions. */
.eyebrow,
.section-number,
.journey-head .section-number {
  font-size: 12px;
  line-height: 1.35;
}

.nav-links a,
.button {
  font-size: 14px;
}

.hero .hero-text {
  font-size: 17px;
  line-height: 1.65;
}

.hero-points span,
.text-link {
  font-size: 13px;
}

.trust-line p,
.client-pills span {
  font-size: 12px;
}

.section-copy > p,
.models-head > p,
.price-copy > p {
  font-size: 16px;
  line-height: 1.65;
}

.check-list li {
  font-size: 14px;
}

.terminal-top,
.hero-terminal-top {
  font-size: 11px;
}

.copy-button,
.terminal-footer {
  font-size: 10px;
}

.terminal-card pre,
.hero-terminal pre {
  font-size: 13px;
}

.model-tag,
.model-meta span {
  font-size: 11px;
}

.model-card h3 {
  font-size: 24px;
}

.model-card p {
  font-size: 14px;
  line-height: 1.6;
}

.price-label {
  font-size: 12px;
}

.price-card > p {
  font-size: 13px;
}

.price-card li {
  font-size: 14px;
}

.steps-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.journey-head {
  margin-bottom: 24px;
}

.journey-head > p {
  font-size: 16px;
  line-height: 1.55;
}

.step-index {
  font-size: 11px;
}

.step-icon {
  font-size: 15px;
}

.journey-card h3 {
  font-size: 20px;
}

.journey-card p {
  font-size: 14px;
  line-height: 1.5;
}

.privacy-copy > span {
  font-size: 11px;
}

.privacy-copy h3 {
  font-size: 30px;
}

.privacy-copy > p {
  font-size: 14px;
  line-height: 1.5;
}

.privacy-points span {
  font-size: 12px;
}

.faq-section {
  padding-bottom: 86px;
}

.faq-list summary {
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 16px;
}

.faq-list details p {
  font-size: 14px;
  line-height: 1.65;
}

.final-cta > div > span {
  font-size: 11px;
}

footer {
  font-size: 12px;
}

.toast {
  font-size: 13px;
}

@media (max-width: 620px) {
  .hero .hero-text,
  .section-copy > p,
  .models-head > p,
  .price-copy > p,
  .journey-head > p {
    font-size: 15px;
  }

  .journey-card p,
  .privacy-copy > p,
  .faq-list details p {
    font-size: 13px;
  }

  .journey-card h3 {
    font-size: 19px;
  }

  .faq-list summary {
    font-size: 15px;
  }
}

/* Header actions: language selector and cabinet entry. */
.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-login-link {
  padding: 10px 4px;
  color: #3f3e3a;
  font-size: 14px;
  font-weight: 700;
}

.nav-login-link:hover { color: var(--orange-deep); }

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(23, 23, 22, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 7px 22px rgba(39, 32, 28, 0.06);
}

.language-switch button {
  min-width: 38px;
  height: 31px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: #76716b;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.language-switch button.is-active {
  color: var(--orange-deep);
  background: #fff7f2;
  box-shadow: 0 4px 12px rgba(223, 86, 49, 0.11);
}

.nav-cta span:first-child { font-size: inherit; }
.nav-cta span:last-child { font-size: 17px; }

@media (max-width: 960px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav.menu-open .nav-actions {
    grid-column: 1 / -1;
    display: flex;
    width: 100%;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .nav.menu-open .nav-cta {
    display: inline-flex;
    flex: 1;
  }

  .nav.menu-open .nav-login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .nav.menu-open .nav-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .language-switch {
    align-self: flex-start;
  }
}
