:root {
  color-scheme: light;
  --ink: #101311;
  --muted: #66706b;
  --line: #d7dfda;
  --paper: #f7faf7;
  --panel: #ffffff;
  --mist: #e8f4ed;
  --cream: #fff7df;
  --green: #19a96f;
  --green-dark: #076844;
  --coral: #f06445;
  --amber: #dfae2c;
  --blue: #2384d1;
  --night: #070908;
  --night-soft: #111714;
  --shadow: 0 28px 90px rgba(6, 10, 8, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7faf7 0%, #ffffff 42%, #f4f8f5 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  inset: 14px clamp(14px, 3vw, 34px) auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(7, 9, 8, 0.62);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px) saturate(145%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 650;
}

nav a:hover,
nav a:focus-visible {
  color: #fff;
}

.header-action {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #07110c;
  background: #b9f8cf;
  font-size: 14px;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 134px clamp(18px, 6vw, 80px) 72px;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.98) 0%, rgba(7, 9, 8, 0.9) 37%, rgba(7, 9, 8, 0.36) 70%, rgba(7, 9, 8, 0.74) 100%),
    linear-gradient(135deg, rgba(25, 169, 111, 0.24), rgba(35, 132, 209, 0.16) 48%, rgba(240, 100, 69, 0.18)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 28px),
    var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--coral), var(--blue));
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 610px);
  max-width: 610px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b9f8cf;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.18;
  font-weight: 650;
}

.section-lede {
  max-width: 850px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.32;
  font-weight: 620;
}

.hero-actions,
.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  font-weight: 800;
}

.button.primary {
  color: #061009;
  background: #b9f8cf;
  border-color: #b9f8cf;
  box-shadow: 0 12px 36px rgba(25, 169, 111, 0.24);
}

.button.secondary {
  color: inherit;
  background: rgba(255, 255, 255, 0.72);
}

.hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(14px);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.launch-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.focus-rail {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  top: 98px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.focus-rail span {
  padding: 8px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 850;
}

.hero-shot {
  position: absolute;
  display: block;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.42));
  user-select: none;
}

.hero-shot-session {
  top: 16%;
  right: clamp(24px, 4vw, 72px);
  width: min(620px, 45vw);
  transform: perspective(1100px) rotateY(-11deg) rotateX(3deg);
}

.hero-shot-log {
  right: clamp(48px, 10vw, 160px);
  bottom: 3%;
  width: min(390px, 30vw);
  transform: perspective(900px) rotateY(8deg) rotateX(-2deg);
}

.hero-shot-active {
  right: clamp(16px, 3vw, 58px);
  bottom: 24%;
  width: min(290px, 23vw);
  transform: rotate(1.5deg);
}

.app-window {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.window-session {
  top: 19%;
  right: clamp(24px, 5vw, 84px);
  width: min(610px, 48vw);
  min-height: 420px;
  padding: 18px;
  transform: perspective(1100px) rotateY(-11deg) rotateX(3deg);
}

.window-log {
  right: clamp(68px, 14vw, 210px);
  bottom: 7%;
  width: min(340px, 34vw);
  min-height: 260px;
  padding: 24px;
  transform: perspective(900px) rotateY(8deg) rotateX(-2deg);
}

.floating-widget {
  position: absolute;
  right: clamp(18px, 6vw, 90px);
  bottom: 29%;
  display: grid;
  gap: 4px;
  width: min(260px, 24vw);
  padding: 18px;
  border: 1px solid rgba(185, 248, 207, 0.42);
  border-radius: 8px;
  color: #eafff1;
  background: rgba(6, 16, 11, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px);
}

.floating-widget span {
  color: #b9f8cf;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.floating-widget strong {
  font-size: 18px;
  line-height: 1.15;
}

.floating-widget b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 28px;
  line-height: 1;
}

.traffic {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
}

.traffic span {
  width: 11px;
  height: 11px;
  border-radius: 8px;
  background: var(--line);
}

.traffic span:first-child {
  background: var(--coral);
}

.traffic span:nth-child(2) {
  background: var(--amber);
}

.traffic span:nth-child(3) {
  background: var(--green);
}

.app-grid {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
}

.sidebar-lines {
  display: grid;
  gap: 12px;
  padding-top: 10px;
}

.sidebar-lines b {
  display: block;
  height: 30px;
  border-radius: 8px;
  background: #e8eee9;
}

.sidebar-lines b:first-child {
  background: #cfe9d8;
}

.session-panel {
  display: grid;
  gap: 14px;
}

.field-label,
.mini-title,
.mock-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.input-line {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 22px;
  font-weight: 750;
}

.chips,
.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span,
.controls span,
.surface span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--mist);
  color: #254338;
  font-size: 13px;
  font-weight: 750;
}

.start-pill {
  width: 100%;
  margin-top: 18px;
  padding: 13px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  text-align: center;
  font-weight: 850;
}

.bars,
.tiny-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 120px;
  margin: 22px 0;
}

.bars span,
.tiny-bars i {
  flex: 1;
  min-height: 12px;
  border-radius: 6px 6px 3px 3px;
  background: var(--green);
}

.bars span:nth-child(2),
.tiny-bars i:nth-child(2) {
  background: var(--coral);
}

.bars span:nth-child(3),
.tiny-bars i:nth-child(3) {
  background: var(--amber);
}

.bars span:nth-child(4),
.tiny-bars i:nth-child(4) {
  background: var(--blue);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

section:not(.hero):not(.status-strip) {
  padding: clamp(64px, 10vw, 118px) clamp(18px, 6vw, 80px);
  scroll-margin-top: 96px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.14);
}

.status-strip div {
  display: grid;
  gap: 4px;
  padding: 22px clamp(18px, 6vw, 80px);
  background: var(--night-soft);
}

.status-strip strong {
  color: #fff;
  font-size: 15px;
}

.status-strip span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.problem {
  background: #fff;
}

.problem h2 {
  max-width: 920px;
}

.problem-grid,
.screenshot-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-grid article,
.pricing,
.final-cta {
  border: 1px solid rgba(16, 19, 17, 0.1);
  border-radius: 8px;
  background: var(--panel);
}

.problem-grid article {
  padding: 24px;
}

.problem-grid p,
.trust-copy p,
.pricing p,
.faq p,
.final-cta p {
  color: var(--muted);
}

.loop {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(25, 169, 111, 0.22), transparent 42%),
    linear-gradient(180deg, #0a0d0b, #111714);
}

.loop .section-kicker,
.loop-list span {
  color: #b9f8cf;
}

.loop-list p {
  color: rgba(255, 255, 255, 0.62);
}

.model {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--cream);
}

.model-board {
  align-self: start;
  border: 1px solid rgba(21, 23, 22, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(21, 23, 22, 0.1);
  overflow: hidden;
}

.prompt-row {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: #f9fbf8;
}

.prompt-row span,
.model-grid span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.prompt-row strong {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 250px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.model-grid article:last-child {
  border-right: 0;
}

.model-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.loop-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loop-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 16px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.loop-list span {
  grid-row: span 2;
  font-weight: 900;
}

.loop-list p {
  margin-bottom: 0;
}

.surfaces {
  background: #fff;
}

.screenshot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.screenshot-card {
  display: grid;
  align-content: start;
  gap: 16px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(16, 19, 17, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8faf8);
  box-shadow: 0 24px 70px rgba(16, 19, 17, 0.08);
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: clamp(300px, 26vw, 420px);
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  background: #f5f6f5;
}

.screenshot-card figcaption {
  display: grid;
  gap: 4px;
  padding: 0 4px 4px;
}

.screenshot-card figcaption strong {
  font-size: 18px;
}

.screenshot-card figcaption span {
  color: var(--muted);
}

.screenshot-card:nth-child(2) img,
.screenshot-card:nth-child(3) img {
  object-position: top left;
}

.surface {
  display: grid;
  gap: 10px;
  min-height: 208px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #f8faf8);
}

.surface strong {
  font-size: 21px;
}

.surface div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.surface.nudge {
  border-top: 5px solid var(--amber);
}

.surface.quick {
  border-top: 5px solid var(--green);
}

.surface.log {
  border-top: 5px solid var(--blue);
}

.tiny-bars {
  height: 72px;
  margin: 4px 0;
}

.tiny-bars i:first-child {
  height: 44%;
}

.tiny-bars i:nth-child(2) {
  height: 84%;
}

.tiny-bars i:nth-child(3) {
  height: 36%;
}

.tiny-bars i:nth-child(4) {
  height: 62%;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(120deg, #f7f8f3, #eef8f2 48%, #f8f5eb);
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-list span {
  color: var(--muted);
}

.pricing {
  margin: clamp(64px, 10vw, 118px) clamp(18px, 6vw, 80px);
  padding: clamp(28px, 6vw, 56px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(25, 169, 111, 0.28), transparent 42%),
    linear-gradient(180deg, #0b0f0d, #141a17);
  box-shadow: 0 30px 90px rgba(6, 10, 8, 0.18);
}

.pricing h2 {
  max-width: 820px;
}

.pricing .section-kicker {
  color: #b9f8cf;
}

.pricing p {
  color: rgba(255, 255, 255, 0.68);
}

.price-row {
  justify-content: space-between;
  margin-top: 28px;
}

.price {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  font-weight: 900;
}

.faq {
  background: #fff;
}

details {
  max-width: 920px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
}

summary:focus-visible {
  outline: 3px solid rgba(22, 138, 91, 0.35);
  outline-offset: 4px;
}

.final-cta {
  margin: 0 clamp(18px, 6vw, 80px) clamp(64px, 10vw, 118px);
  padding: clamp(32px, 6vw, 68px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(25, 169, 111, 0.16), transparent 36%),
    linear-gradient(180deg, #fff, #edf6ef);
}

.final-cta img {
  border-radius: 8px;
  margin-bottom: 20px;
}

.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 80px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    inset: 14px 18px auto;
  }

  nav {
    display: none;
  }

  .header-action {
    margin-left: auto;
  }

  .hero {
    min-height: 92svh;
    padding-top: 118px;
  }

  .hero-scene {
    opacity: 0.3;
  }

  .focus-rail,
  .floating-widget,
  .hero-shot-active,
  .hero-shot-log {
    display: none;
  }

  .hero-shot-session {
    top: 48%;
    right: -210px;
    width: 560px;
    transform: rotate(-2deg);
  }

  .window-session {
    width: 520px;
    top: 54%;
    right: -185px;
    transform: rotate(-2deg);
  }

  .window-log {
    display: none;
  }

  .hero-subtitle {
    max-width: 96%;
  }

  .problem-grid,
  .screenshot-grid,
  .loop,
  .model,
  .model-grid,
  .trust {
    grid-template-columns: 1fr;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .status-strip div {
    padding: 18px 30px;
  }

  .model-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .model-grid article:last-child {
    border-bottom: 0;
  }

  .app-grid {
    grid-template-columns: 88px 1fr;
  }

  .price-row,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 82svh;
  }

  .hero-copy {
    width: 320px;
    max-width: calc(100vw - 60px);
  }

  .header-action {
    display: none;
  }

  .hero-subtitle,
  .launch-note {
    max-width: 100%;
  }

  .hero-actions,
  .hero-actions .button,
  .pricing .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    max-width: 100%;
  }

  .button.secondary {
    background: #fff;
    color: var(--ink);
    border-color: var(--ink);
  }

  h1 {
    font-size: 54px;
  }

  .loop-list li {
    grid-template-columns: 1fr;
  }

  .loop-list span {
    grid-row: auto;
    margin-bottom: 8px;
  }
}
