:root {
  --bg: #111315;
  --bg-deep: #0b0d0f;
  --surface: #171a1d;
  --surface-2: #1d2125;
  --surface-3: #22272b;
  --text: #f2f4f5;
  --text-soft: #c4cbd0;
  --muted: #8d969d;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #00bfff;
  --accent-soft: rgba(0, 191, 255, 0.14);
  --accent-line: rgba(0, 191, 255, 0.35);
  --warning: #f3c969;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --content: 1260px;
  --copy: 680px;
  --nav-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -180px, rgba(0, 191, 255, 0.07), transparent 430px),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font: inherit;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

::selection {
  background: rgba(0, 191, 255, 0.24);
  color: #fff;
}

.shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--nav-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(17, 19, 21, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
}

.nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.wordmark-mark {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.72) 0 5%, transparent 6%),
    conic-gradient(from 220deg, #008bbd, #00bfff 45%, #83e0ff 65%, #008bbd);
  box-shadow: inset 0 0 0 6px rgba(11, 13, 15, 0.72), 0 0 24px rgba(0, 191, 255, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 550;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.045);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--accent-line);
  border-radius: 9px;
  background: var(--accent-soft);
  color: #dff7ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.hero {
  padding: 112px 0 92px;
  text-align: center;
}

.hero-copy {
  max-width: 850px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(50px, 7.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.052em;
  font-weight: 600;
}

.hero-lede {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
  letter-spacing: -0.01em;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.065);
}

.button-primary {
  border-color: #00a9e3;
  background: var(--accent);
  color: #061219;
  box-shadow: 0 10px 34px rgba(0, 191, 255, 0.16);
}

.button-primary:hover {
  background: #34caff;
  border-color: #34caff;
}

.button-disabled,
.button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
}

.hero-support {
  margin: 22px 0 0;
  color: #7f8990;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.hero-media {
  margin-top: 64px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    #0c0f11;
  box-shadow: var(--shadow);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}

.media-placeholder::before {
  content: "";
  position: absolute;
  width: min(70%, 600px);
  aspect-ratio: 1.8 / 1;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 191, 255, 0.065), transparent 68%);
  filter: blur(14px);
}

.media-placeholder-inner {
  position: relative;
  display: grid;
  gap: 9px;
  justify-items: center;
}

.media-placeholder-id {
  color: var(--accent);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.media-placeholder-title {
  color: #d9dfe2;
  font-size: 15px;
  font-weight: 600;
}

.media-placeholder-note {
  color: #69737a;
  font-size: 12px;
}

.media-caption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.media-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  min-width: 82px;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(5,8,10,0.72);
  color: #fff;
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.feature-list {
  padding: 42px 0 12px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.3fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  min-height: 620px;
  padding: 82px 0;
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.82fr);
}

.feature-row.reverse .feature-copy {
  grid-column: 2;
  grid-row: 1;
}

.feature-row.reverse .feature-media {
  grid-column: 1;
  grid-row: 1;
}

.feature-copy {
  max-width: 500px;
}

.feature-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.feature-description {
  margin: 23px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.72;
}

.feature-points {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #9ea7ad;
  font-size: 14px;
}

.feature-points li {
  position: relative;
  padding-left: 18px;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.73em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.45);
}

.feature-impact {
  margin: 21px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #7f8a91;
  font-size: 13px;
}

.explore-jump {
  display: flex;
  justify-content: center;
  padding: 32px 0 96px;
}

.text-link {
  color: #9edfff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.text-link:hover {
  color: #d3f4ff;
}

.personalization {
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.014);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.section-heading p {
  margin: 19px auto 0;
  max-width: 680px;
  color: var(--text-soft);
  font-size: 17px;
}

.personalization-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.4fr;
  gap: 58px;
  align-items: center;
  margin-top: 54px;
}

.personalization-points {
  display: grid;
  gap: 25px;
}

.personalization-point {
  padding-left: 17px;
  border-left: 1px solid var(--accent-line);
}

.personalization-point h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.personalization-point p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing {
  padding: 118px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 940px;
  margin: 54px auto 0;
}

.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.032), rgba(255,255,255,0.014));
}

.price-card h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.price-audience {
  margin: 7px 0 0;
  min-height: 44px;
  color: var(--muted);
  font-size: 13px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 28px;
}

.price strong {
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.price span {
  color: var(--muted);
  font-size: 13px;
}

.renewal {
  margin: 9px 0 0;
  color: #aab3b8;
  font-size: 13px;
}

.license-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--text-soft);
  font-size: 14px;
}

.license-list li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--accent);
}

.price-card .button {
  width: 100%;
  margin-top: 28px;
}

.pricing-note {
  max-width: 780px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.draft-notice {
  max-width: 940px;
  margin: 20px auto 0;
  padding: 13px 15px;
  border: 1px solid rgba(243, 201, 105, 0.2);
  border-radius: 10px;
  background: rgba(243, 201, 105, 0.055);
  color: #b7a570;
  font-size: 12px;
}

.suite-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: 940px;
  margin: 20px auto 0;
  padding: 28px 30px;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 50%, rgba(0,191,255,0.11), transparent 32%),
    rgba(0,191,255,0.035);
}

.suite-band h3 {
  margin: 0;
  font-size: 19px;
}

.suite-band p {
  max-width: 680px;
  margin: 6px 0 0;
  color: #aab5bb;
  font-size: 14px;
}

.suite-band .suite-prices {
  color: #d9f6ff;
  font-size: 13px;
  white-space: nowrap;
}

.explorer {
  padding: 110px 0 120px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.012);
}

.explorer-toolbar {
  display: flex;
  gap: 10px;
  max-width: 980px;
  margin: 46px auto 22px;
}

.feature-filter {
  flex: 1;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #0e1113;
  color: var(--text);
}

.feature-filter::placeholder {
  color: #657078;
}

.toolbar-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,0.025);
  color: #aab4ba;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.toolbar-button:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.explorer-groups {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.feature-group {
  border-bottom: 1px solid var(--line);
}

.feature-group summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 2px;
  color: #e2e7ea;
  font-size: 17px;
  font-weight: 650;
}

.feature-group summary::-webkit-details-marker {
  display: none;
}

.feature-group summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.feature-group[open] summary::after {
  content: "−";
}

.feature-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 40px;
  margin: 0 0 25px;
  padding: 0 2px;
  list-style: none;
  color: #9ba5ab;
  font-size: 14px;
}

.feature-group li {
  position: relative;
  padding-left: 16px;
}

.feature-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5e6b72;
}

.feature-group[hidden] {
  display: none;
}

.filter-empty {
  display: none;
  max-width: 980px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.filter-empty.visible {
  display: block;
}

.faq {
  padding: 112px 0 44px;
}

.faq-list {
  max-width: 900px;
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  color: #edf1f3;
  font-size: 16px;
  font-weight: 620;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-size: 21px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 760px;
  margin: -2px 0 24px;
  color: #9ca6ac;
  font-size: 14px;
  line-height: 1.7;
}

.inline-draft {
  color: var(--warning);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.final-cta {
  padding: 100px 0 124px;
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.site-footer {
  padding: 30px 0 38px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #707b82;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 15px;
  margin-left: auto;
}

.footer-links a {
  color: #8f9ba2;
  text-decoration: none;
}

.footer-links a:hover {
  color: #d7dee2;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 9px 12px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  text-decoration: none;
}

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

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 34px), var(--content));
  }

  .nav {
    gap: 14px;
  }

  .nav-links a:not(:last-child) {
    display: none;
  }

  .hero {
    padding: 84px 0 74px;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 70px 0;
  }

  .feature-row .feature-copy,
  .feature-row.reverse .feature-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .feature-row .feature-media,
  .feature-row.reverse .feature-media {
    grid-column: 1;
    grid-row: 2;
  }

  .feature-copy {
    max-width: 680px;
  }

  .personalization-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .suite-band {
    grid-template-columns: 1fr;
  }

  .suite-band .suite-prices {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .site-header {
    position: relative;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
    margin-inline: auto;
    margin-top: 30px;
  }

  .media-frame {
    border-radius: 16px;
  }

  .feature-list {
    padding-top: 10px;
  }

  .feature-row,
  .feature-row.reverse {
    padding: 58px 0;
  }

  .feature-description {
    font-size: 16px;
  }

  .personalization,
  .pricing,
  .explorer,
  .faq {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .price-card {
    padding: 27px 24px;
  }

  .explorer-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .feature-filter {
    grid-column: 1 / -1;
  }

  .feature-group ul {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    margin-left: 0;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Revised Workflow product storytelling */
body {
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  letter-spacing: -0.006em;
}

.hero-copy {
  max-width: 1020px;
}

.hero h1 {
  max-width: 1000px;
  margin-inline: auto;
  font-size: clamp(48px, 6.4vw, 82px);
  line-height: 1.01;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 900px;
  font-weight: 400;
}

.media-frame-hero {
  aspect-ratio: 16 / 9;
}

.feature-row-major {
  min-height: 700px;
  padding-top: 104px;
  padding-bottom: 104px;
}

.feature-copy h2 {
  font-weight: 600;
  letter-spacing: -0.045em;
}

.benefit-subheading {
  margin: 15px 0 0;
  color: #eef3f5;
  font-size: 18px;
  line-height: 1.48;
  letter-spacing: -0.018em;
  font-weight: 500;
}

.secondary-copy {
  margin-top: 14px;
  color: #aeb7bc;
  font-size: 15px;
  line-height: 1.7;
}

.capability-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.capability-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.085);
  border-radius: 999px;
  background: rgba(255,255,255,0.027);
  color: #aab4ba;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.subfeature-panel {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(0,191,255,0.2);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(0,191,255,0.055), rgba(255,255,255,0.018));
}

.subfeature-kicker {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.subfeature-panel h3 {
  margin: 0;
  color: #f0f3f4;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.subfeature-panel p:not(.subfeature-kicker) {
  margin: 11px 0 0;
  color: #aeb7bc;
  font-size: 13px;
  line-height: 1.65;
}

.subfeature-panel .product-note {
  color: #879198;
}

.subfeature-media {
  margin-top: 18px;
  aspect-ratio: 16 / 9;
  box-shadow: none;
}

/* Raycast-inspired pricing interaction, using Pragmatic licensing */
.pricing-switch {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 42px auto 0;
  padding: 5px;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  background: #0c0f11;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.pricing-switch-button {
  min-width: 128px;
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8e989f;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pricing-switch-button:hover {
  color: #dbe1e4;
}

.pricing-switch-button.active {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 6px 22px rgba(0,0,0,0.24);
}

.pricing-panel {
  margin-top: 28px;
}

.pricing-panel[hidden] {
  display: none;
}

.price-card {
  overflow: hidden;
  min-height: 500px;
}

.featured-price-card {
  border-color: rgba(0,191,255,0.24);
  background:
    radial-gradient(circle at 100% 0, rgba(0,191,255,0.09), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.017));
}

.price-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.price strong {
  font-weight: 600;
}

.studio-pricing-card {
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 8%, rgba(0,191,255,0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  box-shadow: 0 24px 70px rgba(0,0,0,0.2);
}

.studio-pricing-header {
  padding: 34px 34px 25px;
  border-bottom: 1px solid var(--line);
}

.studio-pricing-header .eyebrow {
  margin-bottom: 8px;
}

.studio-pricing-header h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.studio-pricing-header p:last-child {
  max-width: 720px;
  margin: 10px 0 0;
  color: #9ca6ac;
  font-size: 14px;
  line-height: 1.65;
}

.studio-tier-selector {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  margin: 25px 34px 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #0c0f11;
}

.studio-tier {
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #8f989e;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.studio-tier:hover {
  color: #d7dee2;
}

.studio-tier.active {
  background: rgba(255,255,255,0.09);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.studio-pricing-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 50px;
  align-items: start;
  padding: 40px 34px 32px;
}

.studio-tier-label {
  margin: 0;
  color: #b8c1c6;
  font-size: 14px;
  font-weight: 500;
}

.studio-price {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(54px, 7vw, 78px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.studio-tier-detail {
  max-width: 510px;
  margin: 17px 0 0;
  color: #a0a9ae;
  font-size: 14px;
  line-height: 1.65;
}

.studio-license-note {
  max-width: 540px;
  margin: 15px 0 0;
  color: #747f86;
  font-size: 12px;
  line-height: 1.6;
}

.studio-license-list {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.studio-actions {
  display: flex;
  gap: 10px;
  padding: 0 34px 34px;
}

.studio-actions .button {
  min-width: 190px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 900px) {
  .feature-row-major {
    min-height: 0;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .studio-pricing-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .benefit-subheading {
    font-size: 17px;
  }

  .pricing-switch {
    width: 100%;
  }

  .pricing-switch-button {
    flex: 1;
    min-width: 0;
  }

  .studio-pricing-header {
    padding: 27px 22px 22px;
  }

  .studio-tier-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 20px 22px 0;
  }

  .studio-pricing-body {
    padding: 32px 22px 26px;
  }

  .studio-actions {
    flex-direction: column;
    padding: 0 22px 26px;
  }

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


.hero-lede-secondary {
  margin-top: 14px;
  color: #aeb7bc;
  font-size: clamp(16px, 1.7vw, 19px);
}

.final-cta-copy {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}


.feature-chapter {
  max-width: 760px;
  margin: 108px auto 6px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.feature-chapter:first-child {
  margin-top: 34px;
}

.feature-chapter-label {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.feature-chapter-title {
  margin: 9px auto 0;
  color: #b4bdc2;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .feature-chapter {
    margin-top: 72px;
    text-align: left;
  }
}


/* Raycast-aligned typography */
body {
  font-family: "Inter", "Inter Fallback", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", sans-serif;
  font-feature-settings: "calt" 1, "kern" 1, "liga" 1, "ss03" 1;
  letter-spacing: 0;
  font-weight: 400;
}

.hero h1 {
  font-weight: 600;
  line-height: 1.10;
  letter-spacing: 0;
  font-feature-settings: "kern" 1, "ss03" 1, "ss02" 1, "ss08" 1, "liga" 0;
}

.feature-copy h2,
.section-heading h2,
.final-cta h2 {
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: 0.003em;
  font-feature-settings: "calt" 1, "kern" 1, "liga" 1, "ss03" 1;
}

.hero-lede,
.feature-description,
.secondary-copy,
.section-heading p,
.faq-item p,
.price-audience,
.studio-pricing-header p:last-child {
  font-weight: 400;
  letter-spacing: 0;
  font-feature-settings: "calt" 1, "kern" 1, "liga" 1, "ss03" 1;
}

.benefit-subheading,
.button,
.nav-links a,
.nav-cta,
.pricing-switch-button,
.studio-tier,
.feature-chapter-title {
  font-weight: 500;
  letter-spacing: 0.2px;
  font-feature-settings: "calt" 1, "kern" 1, "liga" 1, "ss03" 1;
}

.wordmark,
.eyebrow,
.feature-chapter-label,
.media-placeholder-id {
  font-weight: 600;
}

.hero-support {
  letter-spacing: 0;
}

.price strong,
.studio-price {
  font-weight: 500;
}


.pricing-panel-single .pricing-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 520px;
}

@media (max-width: 640px) {
  .pricing-switch {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .pricing-switch-button {
    width: 100%;
  }
}
