/* ============================================================
   NoteDock Website System
   Editorial macOS launch aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #07090f;
  --bg-secondary: #0d1018;
  --bg-surface: rgba(18, 21, 31, 0.78);
  --bg-surface-2: rgba(255, 255, 255, 0.06);
  --bg-surface-3: rgba(255, 255, 255, 0.03);

  --border-default: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(229, 201, 146, 0.26);
  --border-hover: rgba(149, 182, 255, 0.36);

  --color-primary: #96b5ff;
  --color-primary-hover: #c8d7ff;
  --color-accent: #e3c48d;
  --color-accent-2: #7ae0d0;
  --color-success: #79dba5;
  --color-danger: #ff7f88;

  --color-cta: #f5efe4;
  --color-cta-hover: #fff8ee;
  --color-cta-text: #11131a;

  --text-primary: #f7f3eb;
  --text-secondary: #c7cfde;
  --text-muted: #8894aa;
  --text-dim: #647086;

  --gradient-accent: linear-gradient(135deg, #8bb0ff 0%, #c7d2fe 40%, #e4c58d 100%);
  --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  --gradient-hero: radial-gradient(circle at top, rgba(123, 166, 255, 0.18), transparent 38%);

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-blur: blur(24px);

  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-card-hover: 0 28px 72px rgba(0, 0, 0, 0.45);
  --shadow-cta: 0 18px 44px rgba(245, 239, 228, 0.12);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-micro: 180ms ease-out;
  --ease-content: 520ms cubic-bezier(0.16, 1, 0.3, 1);

  --z-base: 1;
  --z-sticky: 10;
  --z-nav: 20;
  --z-overlay: 30;
  --z-modal: 50;

  --max-width: 1200px;
  --nav-height: 72px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 15% 20%, rgba(138, 177, 255, 0.14), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(227, 196, 141, 0.14), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(96, 221, 198, 0.08), transparent 28%),
    linear-gradient(180deg, #07090f 0%, #090b12 18%, #07090f 100%);
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 82%);
}

body::after {
  opacity: 0.2;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.8px, transparent 0.8px);
  background-size: 10px 10px;
  mix-blend-mode: soft-light;
}

::selection {
  background: rgba(150, 181, 255, 0.28);
  color: var(--text-primary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--ease-micro), opacity var(--ease-micro);
}

a:hover {
  color: var(--color-primary-hover);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 10px;
}

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

ul,
ol {
  list-style: none;
}

.text-hero {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.text-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 3vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.text-subtitle {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
}

.text-body {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
}

.text-small {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
}

.text-gradient {
  background: linear-gradient(135deg, #fff8ef 0%, #d6e1ff 46%, #e3c48d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section {
  padding: var(--space-9) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-header p {
  color: var(--text-secondary);
  margin-top: var(--space-4);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.nav {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: var(--z-nav);
  background: rgba(12, 15, 23, 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 14px var(--space-5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: border-color var(--ease-micro), transform var(--ease-micro), background var(--ease-micro);
}

.nav:hover {
  border-color: rgba(227, 196, 141, 0.24);
  transform: translateY(-1px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: var(--space-4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 14px 10px 13px;
  border-radius: 18px;
  color: #fff !important;
  background: linear-gradient(180deg, rgba(28, 30, 35, 0.98), rgba(9, 10, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.26);
}

.nav-cta:hover {
  color: #fff !important;
  background: linear-gradient(180deg, rgba(34, 37, 43, 1), rgba(12, 13, 17, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.34);
}

.nav-cta svg {
  width: 18px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: transform var(--ease-micro), opacity var(--ease-micro);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition:
    transform var(--ease-micro),
    box-shadow var(--ease-micro),
    background var(--ease-micro),
    border-color var(--ease-micro),
    color var(--ease-micro);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(117, 154, 255, 0.16), rgba(94, 238, 199, 0.14));
  color: var(--text-primary);
  border: 1px solid rgba(149, 182, 255, 0.26);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
  border-color: rgba(149, 182, 255, 0.44);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-store {
  align-items: center;
  justify-content: flex-start;
  color: #fff !important;
  background: linear-gradient(180deg, rgba(28, 30, 35, 0.98), rgba(6, 7, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.28);
}

.btn-store:hover {
  color: #fff !important;
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(36, 39, 46, 1), rgba(9, 10, 13, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 56px rgba(0, 0, 0, 0.34);
}

.btn-store svg {
  width: 22px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}

.store-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2px;
  line-height: 1.05;
}

.store-cta-kicker {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.store-cta-title {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.store-cta-subtitle {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.68);
}

.btn-lg {
  padding: 16px 20px;
  border-radius: 20px;
  font-size: 1rem;
}

.glass-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  transition:
    border-color var(--ease-micro),
    transform var(--ease-micro),
    box-shadow var(--ease-micro),
    background var(--ease-micro);
}

.glass-card:hover {
  border-color: rgba(149, 182, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(149, 182, 255, 0.28), rgba(227, 196, 141, 0.26));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.38rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  max-width: 920px;
  margin: 0 auto;
}

.pricing-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: var(--space-7);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--ease-micro), border-color var(--ease-micro), box-shadow var(--ease-micro);
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(149, 182, 255, 0.08), transparent 42%, rgba(227, 196, 141, 0.05));
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(149, 182, 255, 0.26);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
  border-color: rgba(227, 196, 141, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 62px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(227, 196, 141, 0.12);
  color: var(--color-accent);
  border: 1px solid rgba(227, 196, 141, 0.24);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
  position: relative;
}

.pricing-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.3rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-2);
  position: relative;
}

.pricing-price span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: var(--space-5);
  position: relative;
}

.pricing-features {
  margin-bottom: var(--space-6);
  position: relative;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.96rem;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent-2);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 4px;
}

.pricing-card .btn {
  width: 100%;
  position: relative;
}

.nav-cta .store-cta-copy {
  gap: 1px;
}

.nav-cta .store-cta-kicker {
  font-size: 0.54rem;
  letter-spacing: 0.11em;
}

.nav-cta .store-cta-title {
  font-size: 0.84rem;
}

.nav-cta .store-cta-subtitle {
  display: none;
}

.footer {
  padding: var(--space-7) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 460px;
}

.legal-page {
  padding-top: calc(var(--nav-height) + var(--space-8));
  padding-bottom: var(--space-9);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.legal-content::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -5%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(149, 182, 255, 0.16), transparent 72%);
  pointer-events: none;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-2);
  position: relative;
}

.legal-content .legal-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-7);
  position: relative;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-top: var(--space-7);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.legal-content h2:first-of-type {
  margin-top: var(--space-5);
  border-top: none;
  padding-top: 0;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  max-width: 70ch;
  position: relative;
}

.legal-content ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-5);
  position: relative;
}

.legal-content ul li {
  color: var(--text-secondary);
  padding: var(--space-1) 0;
  list-style: disc;
}

.legal-content a {
  color: var(--color-primary);
}

.support-hero {
  text-align: center;
  padding-top: calc(var(--nav-height) + var(--space-8));
  padding-bottom: var(--space-7);
  position: relative;
}

.support-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(149, 182, 255, 0.14), transparent 30%),
    radial-gradient(circle at 65% 10%, rgba(227, 196, 141, 0.12), transparent 22%);
  pointer-events: none;
}

.support-hero .container {
  position: relative;
}

.support-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-3);
}

.support-hero p {
  color: var(--text-secondary);
  font-size: 1.08rem;
  max-width: 640px;
  margin: 0 auto;
}

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color var(--ease-micro), transform var(--ease-micro), box-shadow var(--ease-micro);
  box-shadow: var(--shadow-card);
}

.faq-item:hover {
  border-color: rgba(149, 182, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--color-primary-hover);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: transform var(--ease-micro);
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease-in-out, padding 320ms ease-in-out;
}

.faq-item.open .faq-answer {
  max-height: 560px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-card,
.sys-req {
  max-width: 680px;
  margin: var(--space-8) auto 0;
  text-align: center;
}

.contact-card {
  padding: var(--space-7);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-card);
}

.contact-card h2,
.sys-req h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}

.contact-card p,
.sys-req-list span {
  color: var(--text-secondary);
}

.contact-card p {
  margin-bottom: var(--space-5);
}

.sys-req-list {
  display: grid;
  gap: 12px;
}

.sys-req-list span {
  display: block;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.cta-section {
  text-align: center;
  padding: var(--space-10) 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: auto 50% 0;
  transform: translateX(-50%);
  width: min(960px, 90vw);
  height: 540px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(149, 182, 255, 0.18) 0%, rgba(227, 196, 141, 0.08) 36%, transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-5);
  position: relative;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.08rem;
  margin-bottom: var(--space-6);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  position: relative;
}

.cta-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  position: relative;
}

.cta-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--ease-content), transform var(--ease-content);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: var(--space-8) 0;
  }
}

@media (max-width: 768px) {
  .nav {
    left: 12px;
    right: 12px;
    top: 12px;
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(12, 15, 23, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px;
    gap: 12px;
    margin-top: 0;
    box-shadow: var(--shadow-card);
  }

  .nav-toggle {
    display: block;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-tagline {
    max-width: 520px;
  }

  .legal-content,
  .contact-card {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }

  .btn-lg {
    width: 100%;
  }

  .store-cta-copy {
    width: 100%;
  }

  .store-cta-title {
    font-size: 0.98rem;
  }

  .store-cta-subtitle {
    white-space: normal;
  }

  .store-cta-kicker {
    white-space: normal;
  }

  .nav-cta {
    width: 100%;
  }
}
