:root {
  color-scheme: light;
  --cream: #edf5ff;
  --paper: #fbfdff;
  --paper-strong: #ffffff;
  --ink: #1e222a;
  --muted: #52616f;
  --soft: #dce8f5;
  --line: rgba(30, 34, 42, 0.14);
  --steel: #8a847c;
  --steel-dark: #4a4540;
  --ember: #ff3a00;
  --sun: #f7c900;
  --amber-soft: #fff8c7;
  --blue-soft: #e4f0ff;
  --mint-soft: #e9f7ef;
  --lilac-soft: #f1edff;
  --radius: 8px;
  --content: 1180px;
  --wide: 1280px;
  --shadow: 0 22px 62px rgba(30, 34, 42, 0.14);
  --small-shadow: 0 10px 28px rgba(30, 34, 42, 0.1);
  --font:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.96) 0%, rgba(237, 245, 255, 0.72) 42%, rgba(237, 245, 255, 0) 78%),
    linear-gradient(132deg, rgba(247, 243, 0, 0.22) 0%, rgba(247, 243, 0, 0) 34%),
    linear-gradient(24deg, rgba(255, 58, 0, 0.1) 0%, rgba(255, 58, 0, 0) 42%),
    var(--cream);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 34, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 34, 42, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 78%);
}

img {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--small-shadow);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 16px 20px 0;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(100%, var(--content));
  min-height: 62px;
  margin: 0 auto;
  padding: 9px 10px 9px 13px;
  border: 1px solid rgba(30, 34, 42, 0.12);
  border-radius: var(--radius);
  background: rgba(251, 253, 255, 0.82);
  box-shadow: 0 12px 34px rgba(30, 34, 42, 0.1);
  backdrop-filter: blur(18px) saturate(1.2);
}

.brand,
.nav-links,
.hero-actions,
.footer-brand,
.footer-links {
  display: flex;
  align-items: center;
}

.brand,
.footer-brand {
  gap: 10px;
}

.brand span,
.footer-brand span {
  font-family:
    "Oxanium",
    "Playwrite GB J",
    "New York",
    Georgia,
    serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.brand img {
  width: 42px;
  height: 39px;
  object-fit: contain;
}

.nav-links {
  justify-content: center;
  gap: 4px;
  color: rgba(30, 34, 42, 0.72);
  font-size: 0.93rem;
  font-weight: 650;
}

.nav-links a,
.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(30, 34, 42, 0.06);
  color: var(--ink);
}

.nav-download {
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-download:hover,
.nav-download:focus-visible {
  background: var(--ember);
}

.hero,
.feature-section,
.ask-section,
.examples-section,
.trust-section,
.site-footer {
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.hero {
  padding-top: 146px;
  padding-bottom: 48px;
  text-align: center;
}

.hero-copy {
  width: min(100%, 940px);
  margin: 0 auto;
}

.section-kicker {
  color: var(--ember);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0 auto;
  color: var(--ink);
  font-size: 5.8rem;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 0.97;
}

.hero-lede {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.25rem;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 19px;
  border-radius: var(--radius);
  font-weight: 760;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.button-primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--ember);
  background: var(--ember);
}

.button-secondary {
  border: 1px solid rgba(30, 34, 42, 0.16);
  background: rgba(251, 253, 255, 0.86);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 58, 0, 0.32);
  background: var(--amber-soft);
}

.hero-proof {
  position: relative;
  width: min(100%, 1120px);
  margin: 72px auto 0;
  padding: 8px;
  border: 1px solid rgba(30, 34, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(251, 253, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-proof img {
  width: 100%;
  aspect-ratio: 3456 / 2234;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
}

.feature-section,
.ask-section,
.examples-section,
.trust-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.feature-section {
  padding-top: 34px;
  padding-bottom: 56px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.ask-copy h2,
.trust-panel h2 {
  color: var(--ink);
  font-size: 2.65rem;
  font-weight: 790;
  letter-spacing: 0;
  line-height: 1.08;
}

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

.feature-card {
  min-height: 262px;
  padding: 22px;
  border: 1px solid rgba(30, 34, 42, 0.13);
  border-radius: var(--radius);
  background: rgba(251, 253, 255, 0.78);
  box-shadow: var(--small-shadow);
}

.feature-card:nth-child(2) {
  background: rgba(255, 248, 199, 0.78);
}

.feature-card:nth-child(3) {
  background: rgba(228, 240, 255, 0.64);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 38px;
  margin-bottom: 22px;
  border: 1px solid rgba(30, 34, 42, 0.16);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--steel-dark);
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card h3,
.prompt-card p,
.example-card h3 {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 780;
}

.feature-card p,
.ask-copy p,
.trust-copy p,
.site-footer p {
  color: var(--muted);
}

.feature-card p {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.52;
}

.ask-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(360px, 0.76fr);
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-top: 38px;
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.78), rgba(251, 253, 255, 0.32)),
    var(--blue-soft);
}

.ask-copy {
  max-width: 520px;
  margin-left: max(0px, calc((100vw - var(--wide)) / 2));
}

.ask-copy h2 {
  margin-top: 0;
}

.ask-copy p {
  margin-top: 18px;
  font-size: 1.08rem;
}

.prompt-list {
  display: grid;
  width: min(100%, 590px);
  gap: 12px;
}

.prompt-card {
  padding: 18px;
  border: 1px solid rgba(30, 34, 42, 0.12);
  border-radius: var(--radius);
  background: rgba(251, 253, 255, 0.78);
  box-shadow: 0 12px 30px rgba(30, 34, 42, 0.06);
}

.prompt-card:nth-child(2) {
  background: rgba(255, 248, 199, 0.72);
}

.prompt-card:nth-child(3) {
  background: rgba(241, 237, 255, 0.66);
}

.prompt-card:nth-child(4) {
  background: rgba(233, 247, 239, 0.72);
}

.prompt-card p {
  line-height: 1.38;
}

.examples-section {
  width: min(100%, var(--wide));
}

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

.example-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(30, 34, 42, 0.13);
  border-radius: var(--radius);
  background: rgba(251, 253, 255, 0.88);
  box-shadow: var(--small-shadow);
}

.example-image-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.example-image-button:focus-visible {
  outline: 3px solid rgba(255, 58, 0, 0.52);
  outline-offset: -3px;
}

.example-image-button img {
  width: 100%;
  height: 228px;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid rgba(30, 34, 42, 0.1);
  transition: transform 180ms ease;
}

.example-card:hover .example-image-button img {
  transform: scale(1.015);
}

.example-dialog {
  width: min(94vw, 1180px);
  max-height: 92vh;
  padding: 0;
  border: 1px solid rgba(30, 34, 42, 0.18);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 30px 90px rgba(30, 34, 42, 0.28);
}

.example-dialog::backdrop {
  background: rgba(30, 34, 42, 0.48);
  backdrop-filter: blur(12px);
}

.example-dialog-shell {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.example-dialog-close {
  justify-self: end;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(30, 34, 42, 0.16);
  border-radius: var(--radius);
  background: rgba(251, 253, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.example-dialog-close:hover,
.example-dialog-close:focus-visible {
  border-color: rgba(255, 58, 0, 0.32);
  background: var(--amber-soft);
}

.example-dialog img {
  width: 100%;
  max-height: 72vh;
  border: 1px solid rgba(30, 34, 42, 0.1);
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--soft);
}

.example-dialog p {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 720;
}

.example-card div {
  padding: 14px 15px 16px;
}

.example-card p {
  margin-bottom: 3px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.trust-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(92deg, var(--ink), #34383f);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.trust-panel h2,
.trust-panel .section-kicker {
  color: #fff;
}

.trust-panel .section-kicker {
  color: var(--sun);
}

.trust-copy {
  display: grid;
  gap: 18px;
  color: rgba(251, 253, 255, 0.84);
  font-size: 1.08rem;
}

.trust-copy p {
  color: rgba(251, 253, 255, 0.8);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 38px;
  padding-bottom: 42px;
}

.footer-brand {
  margin-bottom: 8px;
  font-weight: 820;
}

.footer-brand img {
  width: 34px;
  height: 32px;
}

.footer-links {
  gap: 16px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ember);
}

.billing-page {
  min-height: 100vh;
}

.billing-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 128px 24px 72px;
}

.billing-card {
  display: grid;
  gap: 28px;
  width: min(100%, 720px);
  padding: 38px;
  border: 1px solid rgba(30, 34, 42, 0.14);
  border-radius: var(--radius);
  background: rgba(251, 253, 255, 0.88);
  box-shadow: var(--shadow);
}

.billing-card-success {
  background:
    linear-gradient(135deg, rgba(233, 247, 239, 0.74), rgba(251, 253, 255, 0.9) 58%),
    var(--paper-strong);
}

.billing-card-success .billing-copy p {
  padding-top: 8px;
}

.billing-copy {
  display: grid;
  gap: 14px;
}

.billing-copy h1 {
  max-width: 11ch;
  margin: 0;
  font-size: 4.5rem;
  line-height: 0.98;
}

.billing-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.15rem;
}

.billing-note {
  color: rgba(82, 97, 111, 0.82);
}

.billing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.policy-page {
  padding-top: 146px;
}

.policy-hero,
.policy-layout {
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.policy-hero {
  padding-bottom: 54px;
}

.policy-date {
  color: var(--ember);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.policy-hero h1 {
  max-width: none;
  margin: 12px 0 0;
  font-size: clamp(3.8rem, 8vw, 6.8rem);
  line-height: 0.98;
}

.policy-lede {
  max-width: 820px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.24rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 0.9fr);
  gap: 46px;
  align-items: start;
  padding-bottom: 84px;
}

.policy-summary {
  position: sticky;
  top: 104px;
  padding: 22px;
  border: 1px solid rgba(30, 34, 42, 0.13);
  border-radius: var(--radius);
  background: rgba(251, 253, 255, 0.78);
  box-shadow: var(--small-shadow);
}

.policy-summary h2 {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
}

.policy-summary ul,
.policy-section ul {
  padding-left: 1.15rem;
}

.policy-summary ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.policy-content {
  display: grid;
  gap: 32px;
}

.policy-section {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(30, 34, 42, 0.1);
}

.policy-section h2 {
  color: var(--ink);
  font-size: 1.75rem;
  font-weight: 790;
  letter-spacing: 0;
  line-height: 1.12;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 1.04rem;
}

.policy-section p {
  margin-top: 14px;
}

.policy-section ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
}

.policy-section a {
  color: var(--ink);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(255, 58, 0, 0.42);
  text-underline-offset: 3px;
}

.policy-section a:hover,
.policy-section a:focus-visible {
  color: var(--ember);
}

.policy-section code {
  padding: 2px 5px;
  border: 1px solid rgba(30, 34, 42, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: 0.94em;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 4.8rem;
  }

  .feature-grid,
  .trust-panel,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: static;
  }

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

  .ask-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .ask-copy {
    max-width: none;
  }

  .example-image-button img {
    height: 260px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    padding: 12px 14px 0;
  }

  .nav-shell {
    min-height: 58px;
  }

  .hero,
  .feature-section,
  .examples-section,
  .site-footer,
  .policy-hero,
  .policy-layout {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 46px;
    padding: 5px;
  }

  .feature-section,
  .ask-section,
  .examples-section,
  .trust-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .feature-section {
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .section-heading h2,
  .ask-copy h2,
  .trust-panel h2 {
    font-size: 2.15rem;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 18px;
  }

  .ask-section {
    grid-template-columns: 1fr;
    padding-right: 16px;
    padding-left: 16px;
  }

  .ask-copy {
    margin-right: 0;
    margin-left: 0;
  }

  .example-grid {
    grid-template-columns: 1fr;
  }

  .example-image-button img {
    height: 220px;
  }

  .trust-panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-footer {
    flex-direction: column;
  }

  .billing-shell {
    min-height: auto;
    padding: 58px 16px;
  }

  .billing-card {
    padding: 28px;
  }

  .billing-copy h1 {
    font-size: 3rem;
  }

  .policy-page {
    padding-top: 58px;
  }

  .policy-hero {
    padding-bottom: 40px;
  }

  .policy-hero h1 {
    font-size: 3.2rem;
  }

  .policy-lede {
    font-size: 1.08rem;
  }

  .policy-section h2 {
    font-size: 1.52rem;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.72rem;
  }

  .brand span {
    font-size: 18px;
  }

  .nav-download {
    padding-right: 11px;
    padding-left: 11px;
  }

  .billing-actions .button {
    width: 100%;
  }
}
