:root {
  color-scheme: light;
  --color-canvas: #ffffff;
  --color-ink: #17191c;
  --color-warm-mist: #fbe1d1;
  --color-terracotta: #5d2a1a;
  --color-fog: #f7f7f8;
  --color-muted-stone: #4c4c4c;
  --color-light-steel: #777b86;
  --line: rgb(23 25 28 / 0.12);
  --ink: var(--color-ink);
  --muted: var(--color-muted-stone);
  --accent: var(--color-terracotta);
  --panel: var(--color-canvas);
  --soft: var(--color-fog);
  --shadow: rgba(4, 23, 43, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
  --display: "Signifier", Georgia, "Times New Roman", ui-serif, serif;
  --sans: "Sohne", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 76% 0%, rgb(251 225 209 / 0.58), transparent 34rem),
    linear-gradient(180deg, rgb(247 247 248 / 0.82), transparent 28rem),
    var(--color-canvas);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 44%, transparent);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  justify-content: space-between;
  width: min(1280px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgb(255 255 255 / 0.86);
  backdrop-filter: blur(18px);
  box-shadow: rgba(4, 23, 43, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.08) 0px 16px 24px -12px;
}

.brand {
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgb(23 25 28 / 0.12);
}

.site-nav {
  gap: 4px;
}

.site-nav a,
.site-nav button {
  padding: 9px 14px;
  border: 0;
  border-radius: 9999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 430;
  font-family: inherit;
  background: transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav button:hover,
.site-nav button:focus-visible {
  color: var(--ink);
  background: var(--soft);
}

.site-nav .download-link {
  color: var(--ink);
  border: 1px solid var(--line);
}

.download-cta {
  position: relative;
  display: inline-grid;
  place-items: center;
  cursor: default;
}

.download-cta:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--accent) 44%, transparent);
}

.download-text-default,
.download-text-hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-area: 1 / 1;
  transition: opacity 160ms ease, transform 160ms ease;
}

.download-text-hover {
  opacity: 0;
  transform: translateY(4px);
}

.download-cta:hover .download-text-default,
.download-cta:focus-visible .download-text-default {
  opacity: 0;
  transform: translateY(-4px);
}

.download-cta:hover .download-text-hover,
.download-cta:focus-visible .download-text-hover {
  opacity: 1;
  transform: translateY(0);
}

.pricing-hero,
.pricing-shell,
.notice-grid,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.pricing-hero {
  display: grid;
  justify-items: center;
  padding: 112px 0 42px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 860px;
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.02;
}

.hero-copy {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.price-card,
.included-card,
.notice-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.price-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 24px;
  padding: 34px;
}

.price-card::before,
.price-card::after {
  position: absolute;
  top: -12px;
  width: 86px;
  height: 30px;
  content: "";
  border: 1px solid rgb(23 25 28 / 0.08);
  background: rgb(255 255 255 / 0.72);
}

.price-card::before {
  left: 34px;
  transform: rotate(-4deg);
}

.price-card::after {
  right: 38px;
  transform: rotate(6deg);
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.card-head p {
  font-size: 24px;
  font-weight: 500;
}

.card-head span,
.fine-print,
.regular-price,
.license-summary p {
  color: var(--muted);
}

.card-head span,
.regular-price,
.fine-print {
  font-size: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 28px;
  border-radius: 22px;
  background: var(--color-warm-mist);
}

.price-row strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(72px, 12vw, 126px);
  font-weight: 400;
  line-height: 0.86;
}

.price-row span {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
}

.beta-pill {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  border-radius: 9999px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  background: rgb(255 255 255 / 0.56);
}

.regular-price {
  font-size: 20px;
}

.regular-price s {
  color: var(--ink);
  font-size: 28px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--accent);
}

.license-summary {
  display: grid;
  gap: 6px;
  padding-top: 2px;
}

.license-summary p:first-child {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.cta-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 9999px;
  color: var(--color-canvas);
  font-size: 14px;
  font-weight: 500;
  background: var(--ink);
  box-shadow: 0 14px 24px rgb(23 25 28 / 0.14);
}

.included-card {
  padding: 30px;
  background: color-mix(in srgb, var(--soft) 72%, var(--panel));
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.included-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow), 0 32px 54px -28px rgb(93 42 26 / 0.46);
}

.included-card h2 {
  max-width: 320px;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.08;
}

.included-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.included-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  line-height: 1.35;
}

.included-card li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 500;
}

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

.notice-grid article {
  padding: 22px;
  box-shadow: none;
}

.notice-grid h2 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
}

.notice-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  justify-content: space-between;
  gap: 28px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}

.footer-brand img {
  border-radius: 12px;
}

.footer-right {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-links {
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 13px;
}

.footer-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--color-light-steel);
  font-size: 11px;
}

.footer-contact a {
  color: var(--ink);
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-right {
    justify-items: start;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .pricing-hero {
    padding-top: 78px;
  }

  .pricing-shell,
  .notice-grid {
    grid-template-columns: 1fr;
  }

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

  .price-row strong {
    font-size: 78px;
  }
}
