:root {
  --bg-top: #f7fbff;
  --bg-bottom: #f8fafc;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-dark: #0f172a;
  --text: #0f172a;
  --muted: #475569;
  --soft: #64748b;
  --border: rgba(148, 163, 184, 0.24);
  --accent: #0284c7;
  --shadow: 0 24px 80px -40px rgba(15, 23, 42, 0.38);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(125, 211, 252, 0.24), transparent 34%),
    linear-gradient(180deg, var(--bg-top) 0%, #ffffff 42%, var(--bg-bottom) 100%);
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

summary {
  cursor: pointer;
}

::selection {
  background: rgba(56, 189, 248, 0.22);
}

.page {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.75rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.2rem;
  background: #ffffff;
  box-shadow: 0 10px 30px -24px rgba(15, 23, 42, 0.85);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), transparent 55%);
}

.brand-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 0.55rem);
  gap: 0.24rem;
}

.brand-grid span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 0.18rem;
}

.brand-grid span:nth-child(1),
.brand-grid span:nth-child(4) {
  background: #0f172a;
}

.brand-grid span:nth-child(2) {
  background: #38bdf8;
}

.brand-grid span:nth-child(3) {
  background: #cbd5e1;
}

.brand-name,
.brand-tagline {
  display: block;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-tagline {
  margin-top: 0.15rem;
  font-size: 0.76rem;
  color: var(--soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.button-primary,
.button-secondary,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: #0f172a;
  color: #ffffff;
}

.button-primary:hover {
  background: #1e293b;
}

.button-secondary {
  border-color: rgba(226, 232, 240, 1);
  background: #ffffff;
  color: #334155;
}

.button-secondary:hover {
  border-color: rgba(203, 213, 225, 1);
  color: #0f172a;
}

.button-light {
  background: #ffffff;
  color: #0f172a;
}

.button-light:hover {
  background: #f8fafc;
}

.button-primary:hover,
.button-secondary:hover,
.button-light:hover {
  transform: translateY(-1px);
}

.eyebrow,
.pill,
.badge,
.popular-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  padding: 0.45rem 0.8rem;
  border: 1px solid #bae6fd;
  background: #ffffff;
  box-shadow: 0 8px 20px -18px rgba(15, 23, 42, 0.9);
  color: #0369a1;
  font-size: 0.9rem;
}

.pill {
  padding: 0.35rem 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  white-space: nowrap;
}

.badge {
  padding: 0.35rem 0.8rem;
  background: #f0f9ff;
  color: #0369a1;
}

.popular-badge {
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 4rem;
  align-items: center;
  padding: 4.5rem 0 2.5rem;
}

.hero-copy h1,
.page-head h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(2.6rem, 6vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-head p,
.section-head p {
  color: var(--muted);
}

.hero-copy p {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: 1.15rem;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.chip-grid,
.metric-grid,
.grid-3,
.grid-2,
.callout-list,
.pricing-grid,
.page-grid-2,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.chip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
}

.chip {
  padding: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px -26px rgba(15, 23, 42, 0.9);
  color: #334155;
  font-size: 0.92rem;
  font-weight: 700;
}

.card,
.hero-panel,
.cta-panel,
.price-card,
.faq-item {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.35);
  filter: blur(48px);
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.workspace-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(226, 232, 240, 0.15);
  border-radius: var(--radius-lg);
  background: #0f172a;
  color: #ffffff;
}

.workspace-banner p,
.metric-card p,
.workspace-list p,
.feature-card p,
.audience-card p,
.step-card p,
.note-card p,
.contact-card p,
.pricing-copy,
.legal-body p,
.legal-body li,
.footer-copy,
.help-copy,
.not-found-card p {
  margin: 0;
}

.workspace-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.9);
}

.workspace-title {
  margin-top: 0.45rem;
  font-size: 1.1rem;
  font-weight: 700;
}

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

.metric-card,
.workspace-list,
.feature-card,
.audience-card,
.step-card,
.note-card,
.contact-card,
.legal-body,
.not-found-card {
  padding: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.metric-card p,
.workspace-list p,
.feature-card p,
.audience-card p,
.step-card p,
.note-card p,
.contact-card p,
.pricing-copy,
.legal-body p,
.legal-body li,
.footer-copy,
.help-copy,
.not-found-card p,
.section-head p {
  color: var(--muted);
}

.metric-label {
  font-size: 0.92rem;
}

.metric-value {
  margin-top: 0.8rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
}

.workspace-list-head,
.list-row,
.list-row-left,
.cta-row,
.price-head {
  display: flex;
}

.workspace-list-head,
.cta-row,
.price-head {
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.list-row {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.list-row-left {
  align-items: center;
  gap: 0.8rem;
}

.row-index {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 800;
}

.row-action {
  font-size: 0.76rem;
  color: #94a3b8;
}

.section {
  padding: 3rem 0;
}

.section-head {
  max-width: 48rem;
}

.section-head h2,
.callout-panel h2,
.cta-panel h2 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-head p,
.callout-panel p,
.cta-panel p {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.step-number {
  color: #0369a1;
  font-size: 0.9rem;
  font-weight: 800;
}

.card-title,
.price-name,
.footer-heading,
.contact-card h2,
.note-card h2,
.not-found-card h1 {
  margin-top: 0.9rem;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.feature-card p,
.audience-card p,
.step-card p,
.note-card p,
.contact-card p,
.pricing-copy {
  margin-top: 0.85rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.callout {
  padding: 3rem 0;
}

.callout-panel {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.95);
  border-radius: var(--radius-xl);
  background: #0f172a;
  padding: 2.4rem;
  color: #ffffff;
  box-shadow: 0 24px 80px -40px rgba(15, 23, 42, 0.8);
}

.callout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
  margin-top: 1.35rem;
}

.callout-panel p {
  max-width: 42rem;
  color: rgba(226, 232, 240, 0.9);
}

.callout-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.callout-item {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq-item {
  border-radius: 1.75rem;
  padding: 1.5rem;
}

.faq-item summary {
  list-style: none;
  font-size: 1.02rem;
  font-weight: 800;
}

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

.faq-item p {
  margin: 1rem 0 0;
  max-width: 48rem;
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel {
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.cta-row {
  align-items: center;
}

.cta-panel p {
  max-width: 40rem;
}

.site-footer {
  margin-top: 4.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 2.6rem 0;
}

.footer-heading {
  margin: 0;
  font-size: 1.1rem;
}

.footer-copy {
  margin-top: 0.75rem;
  max-width: 22rem;
  line-height: 1.7;
}

.support-line {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--soft);
}

.footer-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.page-main {
  padding: 4.5rem 0 0;
}

.page-head {
  max-width: 48rem;
}

.page-head p {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.75;
}

.page-grid-2 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  margin-top: 3rem;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 3rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.price-card.featured {
  border-color: rgba(15, 23, 42, 0.96);
  background: #0f172a;
  color: #ffffff;
}

.price-name {
  margin: 0;
  color: #0369a1;
  font-size: 0.95rem;
}

.featured .price-name {
  color: #bae6fd;
}

.price-value {
  margin: 0.7rem 0 0;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.price-duration {
  margin-left: 0.3rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--soft);
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.8rem;
  align-items: start;
  color: #334155;
  line-height: 1.65;
}

.feature-list li::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: #f0f9ff;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 800;
}

.featured .feature-list li {
  color: #e2e8f0;
}

.featured .feature-list li::before {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.featured .price-duration {
  color: #cbd5e1;
}

.price-spacer {
  flex: 1 1 auto;
  min-height: 1.5rem;
}

.price-note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #64748b;
}

.featured .price-note {
  color: #94a3b8;
}

.price-card .button-primary,
.price-card .button-secondary,
.price-card .button-light {
  width: 100%;
}

.comparison-table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 30rem;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 0.95rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.6;
}

.comparison-table thead th,
.comparison-table tbody th {
  color: var(--text);
  font-weight: 800;
}

.comparison-table td {
  color: var(--muted);
}

.checkout-placeholder-box {
  margin-top: 1.4rem;
  padding: 1.15rem 1.2rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  border-radius: var(--radius-lg);
  background: #f8fafc;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-meta {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--soft);
}

.checkout-meta code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  color: var(--text);
}

.contact-email {
  margin-top: 1.5rem;
}

.link-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.link-list a:hover {
  color: var(--text);
}

.legal-body {
  max-width: 50rem;
  margin-top: 3rem;
}

.legal-meta {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--soft);
}

.legal-body h2 {
  margin: 2.2rem 0 0;
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.legal-body p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.85;
}

.legal-body ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.legal-body li {
  margin-top: 0.5rem;
  line-height: 1.8;
}

.not-found-wrap {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 14rem);
  padding: 4rem 0 1rem;
}

.not-found-card {
  max-width: 42rem;
}

.not-found-card h1 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
}

.not-found-card p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.small-hide {
  display: inline-flex;
}

@media (max-width: 1080px) {
  .hero,
  .callout-grid,
  .page-grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2rem;
  }

  .site-nav {
    display: none;
  }

  .chip-grid,
  .grid-3,
  .grid-2,
  .pricing-grid,
  .callout-list {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .small-hide {
    display: none;
  }

  .hero,
  .page-main {
    padding-top: 3rem;
  }

  .hero-panel,
  .callout-panel,
  .cta-panel,
  .price-card,
  .metric-card,
  .workspace-list,
  .feature-card,
  .audience-card,
  .step-card,
  .note-card,
  .contact-card,
  .legal-body,
  .not-found-card {
    padding: 1.35rem;
  }

  .chip-grid,
  .grid-3,
  .grid-2,
  .metric-grid,
  .pricing-grid,
  .callout-list {
    grid-template-columns: 1fr;
  }

  .workspace-banner,
  .price-head,
  .workspace-list-head {
    flex-direction: column;
    align-items: start;
  }

  .callout-panel {
    padding: 1.6rem;
  }

  .footer-grid {
    padding: 2rem 0;
  }
}
