@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("assets/fonts/inter-700.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/outfit-400.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/outfit-500.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/outfit-600.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 700; font-display: swap; src: url("assets/fonts/outfit-700.woff2") format("woff2"); }
@font-face { font-family: "Outfit"; font-style: normal; font-weight: 800; font-display: swap; src: url("assets/fonts/outfit-800.woff2") format("woff2"); }

:root {
  color-scheme: light;
  --page: #d9dcda;
  --surface: rgba(239, 242, 240, 0.82);
  --surface-solid: #edf0ee;
  --surface-soft: rgba(231, 235, 233, 0.64);
  --ink: #14202f;
  --ink-soft: #34434f;
  --muted: #536360;
  --line: rgba(20, 32, 47, 0.13);
  --line-strong: rgba(20, 32, 47, 0.20);
  --deep: #151e29;
  --deep-soft: #202c3a;
  --deep-muted: #9eaeae;
  --accent: #45c7ac;
  --accent-deep: #247f6b;
  --accent-soft: #a6eadb;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --max-width: 1520px;
  --header-height: 72px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  scroll-padding-top: calc(var(--header-height) + 24px);
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: url("assets/console-bg.jpg") center top / cover no-repeat fixed, var(--page);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(240, 243, 241, 0.10), rgba(215, 220, 217, 0.20));
  pointer-events: none;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.footer-brand {
  font-family: "Outfit", "Inter", sans-serif;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 4.2vw, 4.65rem);
  font-weight: 700;
  letter-spacing: -0.036em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 4.2vw, 4.15rem);
  font-weight: 650;
  letter-spacing: -0.028em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 1.08;
}

p {
  line-height: 1.65;
  text-wrap: pretty;
}

::selection {
  background: rgba(69, 199, 172, 0.32);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: rgba(27, 43, 55, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-height);
  padding: 12px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(20, 32, 47, 0.09);
  background: rgba(238, 242, 240, 0.94);
  backdrop-filter: blur(24px) saturate(110%);
  -webkit-backdrop-filter: blur(24px) saturate(110%);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(36, 127, 107, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(69, 199, 172, 0.10);
  color: var(--accent);
}

.brand-mark svg {
  width: 19px;
  height: 19px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 26px);
  color: #465451;
  font-size: 0.875rem;
  font-weight: 550;
}

.mobile-nav {
  position: relative;
  display: none;
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(36, 127, 107, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(69, 199, 172, 0.08);
  color: #315f55;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 650;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  content: "";
  width: 14px;
  height: 10px;
  background: linear-gradient(currentColor 0 0) top / 100% 1px no-repeat,
    linear-gradient(currentColor 0 0) center / 100% 1px no-repeat,
    linear-gradient(currentColor 0 0) bottom / 100% 1px no-repeat;
  transition: transform 180ms ease;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(280px, calc(100vw - 28px));
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(239, 242, 240, 0.98);
  box-shadow: 0 18px 48px rgba(20, 32, 47, 0.18);
}

.mobile-nav nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.mobile-nav nav a:hover {
  background: rgba(69, 199, 172, 0.10);
  color: var(--ink);
}

.mobile-nav nav a:last-child {
  margin-top: 5px;
  border: 1px solid rgba(36, 127, 107, 0.24);
  background: rgba(69, 199, 172, 0.09);
  color: #285b50;
}

.site-nav > a:not(.nav-status):not(.nav-button) {
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-status):not(.nav-button):hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-status,
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(36, 127, 107, 0.20);
  border-radius: var(--radius-sm);
  background: rgba(69, 199, 172, 0.09);
  color: #285b50;
  font-size: 0.82rem;
  font-weight: 650;
}

.nav-status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(69, 199, 172, 0.12);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(610px, 1.14fr);
  align-items: center;
  gap: clamp(38px, 5vw, 86px);
  width: min(var(--max-width), calc(100% - clamp(24px, 5vw, 80px)));
  min-height: min(860px, calc(100vh - var(--header-height)));
  margin: 0 auto;
  padding: clamp(64px, 7vw, 104px) clamp(32px, 5vw, 76px);
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  background:
    radial-gradient(circle at 83% 24%, rgba(69, 199, 172, 0.14), transparent 26%),
    linear-gradient(112deg, rgba(240, 243, 241, 0.82) 0%, rgba(232, 236, 233, 0.76) 48%, rgba(223, 229, 226, 0.62) 100%);
  backdrop-filter: blur(18px) saturate(106%);
  -webkit-backdrop-filter: blur(18px) saturate(106%);
  color: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -42%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(20, 32, 47, 0.04);
  filter: blur(2px);
  pointer-events: none;
}

.hero-copy,
.hero-story {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 700px;
}

.hero h1 {
  color: var(--ink);
  text-shadow: none;
}

.hero-kicker,
.section-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.hero-kicker > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(69, 199, 172, 0.11);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.65vw, 1.38rem);
  line-height: 1.6;
}

.hero-actions,
.price-actions,
.support-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-actions {
  margin-top: 34px;
}

.primary-action,
.secondary-action,
.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  font-size: 0.9rem;
  font-weight: 650;
}

.primary-action {
  padding: 0 20px;
  border: 1px solid rgba(36, 127, 107, 0.30);
  border-radius: var(--radius-sm);
  background: rgba(69, 199, 172, 0.09);
  color: #285b50;
  box-shadow: 0 8px 22px rgba(20, 32, 47, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.primary-action:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 127, 107, 0.46);
  background: rgba(69, 199, 172, 0.15);
}

.hero .primary-action {
  border-color: rgba(36, 127, 107, 0.30);
  background: rgba(69, 199, 172, 0.08);
  color: #285b50;
  box-shadow: none;
}

.hero .primary-action:hover {
  border-color: rgba(36, 127, 107, 0.46);
  background: rgba(69, 199, 172, 0.14);
}

.secondary-action {
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(244, 247, 246, 0.66);
  color: var(--ink);
}

.text-action {
  gap: 8px;
  color: inherit;
}

.text-action span {
  font-size: 1.04em;
  transition: transform 180ms ease;
}

.text-action:hover span {
  transform: translate(2px, 2px);
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin: 32px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  list-style: none;
}

.hero-assurance li {
  display: inline-flex;
  align-items: center;
}

.hero-assurance li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  margin: 0 12px;
  border-radius: 50%;
  background: rgba(166, 234, 219, 0.54);
}

.hero-story {
  min-height: 630px;
}

.story-frame {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #0f1721;
  box-shadow: 0 16px 30px rgba(5, 10, 17, 0.34);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.story-frame:hover {
  transform: translateY(-5px);
}

.story-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-frame figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 99px;
  background: rgba(13, 20, 29, 0.72);
  color: #f3f8f6;
  font-size: 0.72rem;
  font-weight: 650;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.story-frame figcaption span {
  color: var(--accent-soft);
}

.story-reference {
  top: 126px;
  left: 0;
  width: 29%;
  height: 410px;
  transform: rotate(-2deg);
}

.story-reference:hover {
  transform: rotate(-2deg) translateY(-5px);
}

.story-reverse {
  top: 54px;
  left: 23%;
  z-index: 3;
  width: 40%;
  height: 520px;
}

.story-prompt {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 88% 10%, rgba(69, 199, 172, 0.16), transparent 34%),
    linear-gradient(150deg, rgba(248, 250, 249, 0.97), rgba(225, 231, 228, 0.92));
  box-shadow: 0 20px 42px rgba(28, 38, 47, 0.18);
  color: var(--ink);
  backdrop-filter: blur(24px) saturate(112%);
  -webkit-backdrop-filter: blur(24px) saturate(112%);
}

.story-prompt::after {
  position: absolute;
  right: -20%;
  bottom: -16%;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  content: "";
}

.story-prompt figcaption {
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  border: 1px solid rgba(20, 32, 47, 0.07);
}

.story-prompt figcaption span {
  color: var(--accent-deep);
}

.story-prompt-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  padding: 116px 34px 38px;
  flex-direction: column;
  justify-content: flex-end;
}

.story-prompt-content > span,
.browser-prompt-head > span {
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-prompt-content p {
  display: -webkit-box;
  margin: 18px 0 0;
  overflow: hidden;
  color: #2c3b48;
  font-size: clamp(0.87rem, 1.05vw, 1.02rem);
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 12;
}

.prompt-copy {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(20, 32, 47, 0.10);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: #344651;
  cursor: pointer;
  place-items: center;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.prompt-copy:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-deep);
}

.prompt-copy svg {
  position: absolute;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.prompt-copy .check-icon {
  opacity: 0;
}

.prompt-copy.is-copied {
  background: rgba(69, 199, 172, 0.14);
  color: var(--accent-deep);
}

.prompt-copy.is-copied .copy-icon {
  opacity: 0;
}

.prompt-copy.is-copied .check-icon {
  opacity: 1;
}

.story-output {
  top: 92px;
  right: -1%;
  z-index: 2;
  width: 39%;
  height: 460px;
  transform: rotate(1.5deg);
}

.story-output:hover {
  transform: rotate(1.5deg) translateY(-5px);
}

.story-output figcaption {
  right: 12px;
  left: auto;
}

.workflow-section,
.workspace-section,
.pricing-section,
.policy-hero,
.policy,
.site-footer {
  width: min(var(--max-width), calc(100% - clamp(28px, 6vw, 96px)));
  margin-right: auto;
  margin-left: auto;
}

.workflow-section,
.workspace-section,
.pricing-section {
  padding: clamp(88px, 8vw, 124px) clamp(4px, 1vw, 16px);
}

.section-intro {
  max-width: 880px;
}

.section-intro h2 {
  max-width: 820px;
}

.section-intro > p:not(.section-note) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.workflow-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.workflow-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 64px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  list-style: none;
}

.workflow-line li {
  min-height: 220px;
  padding: 32px clamp(24px, 3vw, 44px) 34px;
  border-right: 1px solid var(--line);
}

.workflow-line li:last-child {
  border-right: 0;
}

.workflow-line span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

.workflow-line strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 650;
  line-height: 1.1;
}

.workflow-line p {
  max-width: 31ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.browser-proof {
  position: relative;
  width: min(1180px, 100%);
  margin: 64px auto 0;
}

.browser-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  aspect-ratio: 1102 / 600;
  padding: 10px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(238, 242, 240, 0.78);
  box-shadow: 0 16px 30px rgba(23, 33, 45, 0.13);
}

.browser-image {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 7px);
  background: #e8ebe8;
}

.browser-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.browser-source img {
  object-position: center 34%;
}

.browser-result img {
  object-position: center 38%;
}

.browser-image figcaption {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  min-height: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(20, 32, 47, 0.07);
  border-radius: 999px;
  background: rgba(249, 251, 250, 0.74);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.browser-result figcaption {
  right: 16px;
  left: auto;
}

.browser-prompt-card {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 24px;
  width: min(46%, 520px);
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 16px;
  background: rgba(245, 248, 246, 0.88);
  box-shadow: 0 16px 34px rgba(24, 34, 42, 0.15);
  color: var(--ink);
  backdrop-filter: blur(22px) saturate(112%);
  -webkit-backdrop-filter: blur(22px) saturate(112%);
}

.browser-prompt-head {
  display: flex;
  min-height: 34px;
  padding-right: 42px;
  align-items: center;
}

.browser-prompt-card .prompt-copy {
  top: 18px;
  right: 18px;
}

.browser-prompt-card p {
  display: -webkit-box;
  margin: 12px 0 0;
  overflow: hidden;
  color: #33434d;
  font-size: clamp(0.82rem, 1.05vw, 0.96rem);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.browser-proof > figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.browser-proof > figcaption strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.proof-section {
  padding: clamp(100px, 10vw, 154px) max(clamp(24px, 6vw, 96px), calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid var(--line);
  background: rgba(231, 235, 233, 0.58);
  backdrop-filter: blur(26px) saturate(108%);
  -webkit-backdrop-filter: blur(26px) saturate(108%);
  color: var(--ink);
}

.proof-intro {
  max-width: 930px;
}

.proof-intro h2 {
  color: var(--ink);
}

.proof-intro > p:not(.section-note) {
  color: var(--muted);
}

.proof-cases {
  display: grid;
  gap: clamp(90px, 10vw, 150px);
  margin-top: 72px;
}

.proof-case {
  display: grid;
  grid-template-columns: minmax(560px, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
  padding-top: 44px;
  border-top: 1px solid var(--line-strong);
}

.proof-case-editorial {
  grid-template-columns: minmax(300px, 0.78fr) minmax(560px, 1.22fr);
}

.case-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(237, 241, 239, 0.82);
  box-shadow: 0 18px 36px rgba(23, 33, 45, 0.10);
}

.case-output {
  position: absolute;
  display: block;
  object-fit: cover;
}

.case-output {
  inset: 18px auto 18px 18px;
  width: 67%;
  height: calc(100% - 36px);
  border-radius: calc(var(--radius-lg) - 8px);
}

.case-prompt-card {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: 22px;
  width: 43%;
  padding: 22px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  background: rgba(246, 248, 247, 0.9);
  box-shadow: 0 16px 34px rgba(24, 34, 42, 0.14);
  color: var(--ink);
  backdrop-filter: blur(22px) saturate(112%);
  -webkit-backdrop-filter: blur(22px) saturate(112%);
}

.case-prompt-card > span {
  display: block;
  padding-right: 42px;
  color: var(--accent-deep);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-prompt-card .prompt-copy {
  top: 14px;
  right: 14px;
}

.case-prompt-card p {
  display: -webkit-box;
  margin: 16px 0 0;
  overflow: hidden;
  color: #33434d;
  font-size: 0.84rem;
  line-height: 1.56;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
}

.case-source {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 145px;
  margin: 0;
  padding: 8px;
  border-radius: 10px;
  background: #eef1ef;
  color: var(--ink);
}

.case-source figcaption {
  margin-bottom: 6px;
  font-size: 0.68rem;
  font-weight: 700;
}

.case-source img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  object-fit: cover;
}

.proof-case-editorial .case-visual {
  background: #eceeec;
}

.proof-case-editorial .case-output {
  object-fit: contain;
  object-position: left center;
}

.case-copy {
  max-width: 470px;
}

.case-copy > span,
.feature-copy > span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.case-copy h3 {
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.02;
}

.case-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.workspace-intro {
  margin-bottom: 64px;
}

.workspace-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.workspace-feature {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(239, 242, 240, 0.72);
}

.workspace-feature figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.workspace-feature figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 48px);
}

.feature-copy h3 {
  max-width: 13ch;
  color: var(--ink);
}

.feature-copy p {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-batch {
  grid-column: span 7;
  flex-direction: column;
  background: rgba(239, 242, 240, 0.72);
  color: var(--ink);
}

.feature-batch .feature-copy h3,
.feature-video .feature-copy h3 {
  color: var(--ink);
}

.feature-batch .feature-copy p,
.feature-video .feature-copy p {
  color: var(--muted);
}

.feature-batch figure {
  height: 570px;
  padding: 0 34px 34px;
}

.feature-batch figure img {
  border-radius: var(--radius-md);
  object-fit: contain;
  object-position: center bottom;
}

.feature-history {
  grid-column: span 5;
  flex-direction: column;
}

.feature-history figure {
  height: 470px;
  padding: 0 24px 24px;
}

.feature-history figure img {
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center top;
}

.feature-rules {
  grid-column: span 5;
  flex-direction: column;
}

.feature-rules figure {
  height: 500px;
  padding: 0 24px 24px;
}

.feature-rules figure img {
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: center top;
}

.feature-video {
  grid-column: span 7;
  flex-direction: column;
  background: rgba(239, 242, 240, 0.72);
  color: var(--ink);
}

.feature-video figure {
  height: 610px;
  padding: 0 24px 24px;
}

.feature-video figure img {
  border-radius: var(--radius-md);
  object-fit: contain;
  object-position: center top;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  width: min(var(--max-width), calc(100% - clamp(28px, 6vw, 96px)));
  margin: 0 auto clamp(88px, 8vw, 124px);
  padding: clamp(48px, 6vw, 82px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-lg);
  background: rgba(239, 242, 240, 0.70);
  backdrop-filter: blur(24px) saturate(108%);
  -webkit-backdrop-filter: blur(24px) saturate(108%);
  color: var(--ink);
}

.trust-copy h2 {
  color: var(--ink);
}

.trust-copy > p:not(.section-note) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
}

.trust-list {
  margin: 36px 0 0;
  border-top: 1px solid var(--line-strong);
}

.trust-list > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.trust-list dt {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.trust-link {
  margin-top: 28px;
  color: var(--accent-deep);
}

.trust-visual {
  margin: 0;
}

.trust-visual img {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
}

.trust-visual figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: left;
}

.pricing-main {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(560px, 1.26fr);
  gap: clamp(46px, 7vw, 112px);
  align-items: start;
}

.pricing-copy {
  position: sticky;
  top: calc(var(--header-height) + 54px);
}

.pricing-copy > p:not(.section-note) {
  max-width: 590px;
  color: var(--muted);
  font-size: 1rem;
}

.provider-note {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
  font-size: 0.84rem !important;
}

.price-panel {
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(239, 242, 240, 0.82);
}

.price-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-strong);
}

.price-head > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 12px;
}

.price-head > div > span {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-head strong {
  color: var(--ink);
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(4.5rem, 7vw, 6.4rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.price-head strong sup {
  position: relative;
  top: -0.4em;
  margin-right: 4px;
  font-size: 0.32em;
  letter-spacing: 0;
}

.price-head em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(36, 127, 107, 0.18);
  border-radius: 99px;
  background: rgba(69, 199, 172, 0.08);
  color: #2a6859;
  font-size: 0.7rem;
  font-weight: 700;
}

.launch-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.price-panel > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.price-panel > ul li {
  position: relative;
  padding: 15px 0 15px 20px;
  border-bottom: 1px solid var(--line);
  color: #3f4f4c;
  font-size: 0.85rem;
  line-height: 1.5;
}

.price-panel > ul li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-deep);
}

.launch-disabled {
  cursor: default;
  user-select: none;
}

.primary-action.launch-disabled:hover {
  transform: none;
  background: rgba(69, 199, 172, 0.09);
}

.free-note {
  margin: clamp(46px, 7vw, 112px) 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.8rem;
}

.free-note strong {
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 0 34px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer > div {
  display: grid;
  gap: 7px;
}

.footer-brand {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer > span a,
.site-footer nav a {
  color: var(--accent-deep);
  font-weight: 650;
}

/* Policy and support pages */

.policy-page {
  position: relative;
  z-index: 1;
  padding: 54px 0 80px;
}

.policy-hero {
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background: rgba(239, 242, 240, 0.72);
}

.policy-hero h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.6vw, 4.5rem);
  text-shadow: none;
}

.policy-hero p,
.policy p,
.policy li {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 18px;
  padding: 0 10px;
  border: 1px solid rgba(36, 127, 107, 0.20);
  border-radius: 99px;
  background: rgba(69, 199, 172, 0.08);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.policy {
  max-width: 980px;
  margin-top: 28px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: rgba(239, 242, 240, 0.76);
}

.policy h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.75rem;
}

.policy h3 {
  margin-top: 30px;
  color: var(--ink);
  font-size: 1.2rem;
}

.policy p,
.policy li {
  max-width: 900px;
}

.policy-callout {
  margin: 26px 0;
  padding: 20px;
  border: 1px solid rgba(36, 127, 107, 0.20);
  border-radius: var(--radius-sm);
  background: rgba(69, 199, 172, 0.08);
  color: #31433f;
}

.table-wrap {
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
}

.policy-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: #41514e;
  font-size: 0.86rem;
  line-height: 1.5;
}

.policy-table th,
.policy-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  color: var(--ink);
  font-family: "Outfit", "Inter", sans-serif;
  font-weight: 650;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.support-links {
  margin: 28px 0 10px;
}

.policy a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1240px) {
  .hero {
    grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
    gap: 32px;
  }

  .hero-story {
    min-height: 570px;
  }

  .story-reference {
    height: 365px;
  }

  .story-reverse {
    height: 455px;
  }

  .story-output {
    height: 420px;
  }

  .proof-case,
  .proof-case-editorial {
    grid-template-columns: 1fr;
  }

  .proof-case-editorial .case-copy {
    order: 2;
  }

  .case-copy {
    max-width: 720px;
  }

  .trust-section,
  .pricing-main {
    grid-template-columns: 1fr;
  }

  .pricing-copy {
    position: static;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .site-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 58px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-story {
    width: min(760px, 100%);
    min-height: 590px;
    margin: 8px auto 0;
  }

  .workflow-line {
    grid-template-columns: 1fr;
  }

  .workflow-line li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-line li:last-child {
    border-bottom: 0;
  }

  .workflow-line span {
    margin-bottom: 24px;
  }

  .browser-proof > figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .workspace-feature {
    grid-column: 1;
  }

  .feature-batch figure,
  .feature-history figure,
  .feature-rules figure,
  .feature-video figure {
    height: clamp(280px, 62vw, 440px);
    min-height: 0;
  }

  .trust-section {
    padding: 44px 34px;
  }

  .trust-visual figcaption {
    text-align: left;
  }
}

@media (max-width: 680px) {
  body {
    background-attachment: scroll;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 3.55rem);
    line-height: 0.99;
  }

  h2 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-status,
  .nav-button {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.74rem;
  }

  .hero {
    width: calc(100% - 20px);
    padding: 54px 20px 38px;
    border-radius: 0 0 14px 14px;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-assurance {
    display: grid;
    gap: 8px;
  }

  .hero-assurance li:not(:last-child)::after {
    display: none;
  }

  .hero-story {
    min-height: 440px;
    margin-top: 14px;
  }

  .story-frame figcaption {
    top: 8px;
    left: 8px;
    min-height: 26px;
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .story-reference {
    top: 96px;
    width: 34%;
    height: 260px;
  }

  .story-reverse {
    top: 38px;
    left: 27%;
    width: 39%;
    height: 330px;
  }

  .story-reverse.story-prompt {
    left: 20%;
    width: 60%;
    height: 340px;
  }

  .story-prompt-content {
    padding: 96px 18px 22px;
  }

  .story-prompt-content p {
    margin-top: 12px;
    font-size: 0.76rem;
    line-height: 1.52;
    -webkit-line-clamp: 9;
  }

  .story-output {
    top: 82px;
    width: 40%;
    height: 285px;
  }

  .workflow-section,
  .workspace-section,
  .pricing-section {
    width: calc(100% - 24px);
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .workflow-line {
    margin-top: 44px;
  }

  .workflow-line li {
    padding: 26px 4px;
  }

  .browser-proof {
    margin-top: 44px;
  }

  .browser-stage {
    aspect-ratio: 640 / 1060;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    padding: 8px;
  }

  .browser-prompt-card {
    top: 50%;
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
    padding: 18px;
    transform: translateY(-50%);
  }

  .browser-prompt-card .prompt-copy {
    top: 15px;
    right: 15px;
  }

  .browser-prompt-card p {
    margin-top: 8px;
    font-size: 0.78rem;
    -webkit-line-clamp: 5;
  }

  .proof-section {
    padding: 90px 18px;
  }

  .proof-cases {
    gap: 88px;
    margin-top: 52px;
  }

  .proof-case {
    gap: 34px;
    padding-top: 28px;
  }

  .case-visual {
    min-height: 520px;
  }

  .case-output {
    width: 74%;
  }

  .case-prompt-card {
    top: 32px;
    right: 12px;
    width: 53%;
    padding: 18px 16px 16px;
  }

  .case-prompt-card p {
    margin-top: 12px;
    font-size: 0.76rem;
    -webkit-line-clamp: 8;
  }

  .case-source {
    right: 12px;
    bottom: 12px;
    width: 112px;
  }

  .feature-copy {
    padding: 28px 24px;
  }

  .feature-batch figure,
  .feature-history figure,
  .feature-rules figure,
  .feature-video figure {
    height: clamp(280px, 78vw, 360px);
    min-height: 0;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
  }

  .trust-section {
    width: calc(100% - 20px);
    margin-bottom: 90px;
    padding: 38px 20px;
    border-radius: 14px;
  }

  .trust-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-panel {
    padding: 30px 22px;
  }

  .price-head {
    flex-direction: column;
  }

  .price-panel > ul {
    grid-template-columns: 1fr;
  }

  .price-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 28px);
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .policy-page {
    padding-top: 24px;
  }

  .policy-hero,
  .policy {
    width: calc(100% - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
