:root {
  --deep-blue: #132a4c;
  --deep-sapphire: #0d1b32;
  --ink-dark: #0b1220;
  --bright-orange: #f28a63;
  --dark-orange: #d06b47;
  --gold: #ffd166;
  --teal: #4ec7b4;
  --cream: #fff8f4;
  --light-bg: #f7efeb;
  --white: #ffffff;
  --text-dark: #1d2433;
  --text-muted: #5c6678;
  --text-light: #e8eefb;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --border-soft: rgba(21, 43, 76, 0.12);
  --border-light: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 14px 32px rgba(10, 22, 41, 0.12);
  --shadow-md: 0 20px 42px rgba(10, 22, 41, 0.17);
  --shadow-strong: 0 28px 64px rgba(7, 16, 33, 0.36);
  --container: min(1160px, calc(100% - 2.4rem));
  /* Themeable blob colors (updated by JS from localStorage) */
  --hero-blob1: rgba(43, 107, 214, 0.62);
  --hero-blob2: rgba(242, 138, 99, 0.55);
  --comp-blob1: rgba(80, 148, 255, 0.16);
  --comp-blob2: rgba(242, 138, 99, 0.16);
}

* {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  pointer-events: none;
}

.module-img {
  pointer-events: auto;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.62;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 520px at 86% -6%, rgba(242, 138, 99, 0.23), transparent 64%),
    radial-gradient(1200px 760px at -8% -6%, rgba(19, 42, 76, 0.18), transparent 72%),
    linear-gradient(160deg, var(--cream), #fcf6f2 44%, #f5ece7 100%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  z-index: 1000;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.section {
  padding: clamp(3.8rem, 6vw, 6.2rem) 0;
  position: relative;
}

.section-tight {
  padding-block: clamp(2.1rem, 3.8vw, 3.2rem);
}

.section-light {
  background: transparent;
}

.section-contrast {
  background:
    radial-gradient(800px 220px at 90% 0%, rgba(80, 148, 255, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.34));
  border-top: 1px solid rgba(19, 42, 76, 0.08);
  border-bottom: 1px solid rgba(19, 42, 76, 0.08);
}

.section-dark {
  color: var(--text-light);
  background:
    radial-gradient(520px 250px at 15% 15%, rgba(84, 146, 255, 0.15), transparent 70%),
    radial-gradient(480px 240px at 90% 80%, rgba(242, 138, 99, 0.18), transparent 72%),
    linear-gradient(170deg, #111f36 0%, #0b1324 70%, #09101d 100%);
}

.section-showcase {
  overflow: clip;
  background:
    radial-gradient(700px 220px at 8% 0%, rgba(242, 138, 99, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
}

h1,
h2,
h3 {
  margin: 0 0 0.72rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.9vw, 3.5rem);
  color: #0e1f38;
}

h2 {
  font-size: clamp(1.55rem, 3.1vw, 2.38rem);
  color: #102443;
}

.section-dark h2,
.section-dark h3 {
  color: #f1f5ff;
}

h3 {
  font-size: clamp(1rem, 1.85vw, 1.28rem);
}

p {
  margin: 0 0 0.88rem;
  color: var(--text-muted);
}

.section-dark p {
  color: rgba(232, 238, 251, 0.82);
}

.compact-copy {
  max-width: 62ch;
  margin-bottom: 0.9rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 248, 244, 0.78);
  border-bottom: 1px solid rgba(242, 138, 99, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  text-decoration: none;
  font-weight: 700;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(13, 27, 50, 0.24));
}

.brand-text {
  color: #142e52;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--dark-orange);
}

.lead {
  font-size: clamp(0.98rem, 1.38vw, 1.11rem);
  max-width: 56ch;
}

.btn {
  border: 0;
  text-decoration: none;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.16rem;
  min-height: 44px;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--bright-orange), var(--dark-orange));
  box-shadow: 0 8px 14px rgba(208, 107, 71, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  isolation: isolate;
}

.btn-primary:hover {
  box-shadow: 0 11px 18px rgba(208, 107, 71, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-secondary,
.btn-nav {
  color: #102443;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 42, 76, 0.16);
}

.btn-secondary:hover,
.btn-nav:hover {
  background: rgba(255, 255, 255, 0.92);
}

.hero {
  padding-top: clamp(3rem, 5vw, 4.8rem);
  z-index: 1;
}

.hero-blob-wrap {
  /* overflow: clip removed so blobs bleed over following sections */
}

.hero-blob {
  position: absolute;
  width: clamp(260px, 34vw, 520px);
  height: clamp(260px, 34vw, 520px);
  border-radius: 50%;
  filter: blur(44px);
  pointer-events: none;
}

.hero-blob-blue {
  top: -9%;
  right: -9%;
  background: var(--hero-blob1);
  will-change: filter;
}

.hero-blob-orange {
  bottom: 4%;
  left: -8%;
  background: var(--hero-blob2);
  will-change: filter;
}

.hero-blob-gold {
  top: 36%;
  right: 30%;
  width: clamp(120px, 18vw, 240px);
  height: clamp(120px, 18vw, 240px);
  background: rgba(255, 209, 102, 0.52);
  filter: blur(34px);
  will-change: filter;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 2.8vw, 2.4rem);
  align-items: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  margin: 1.12rem 0 0.72rem;
}

.cta-row.center {
  justify-content: center;
}

.trust-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.trust-list li {
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(19, 42, 76, 0.12);
  color: #253247;
  font-size: 0.81rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.hero-shot {
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 635px;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.hero-shot::before {
  content: "";
  position: absolute;
  inset: 10% -4% -6% auto;
  width: 210px;
  border-radius: 50%;
  background: rgba(255, 209, 102, 0.22);
  filter: blur(38px);
  z-index: -1;
}

.shot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, #132743, #0b1629 70%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: var(--shadow-strong);
  position: relative;
}

.shot-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.shot-chrome {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
}

.shot-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.shot-chrome span:first-child {
  background: #ff8f8f;
}

.shot-chrome span:nth-child(2) {
  background: #ffd37d;
}

.shot-chrome span:last-child {
  background: #90dd9c;
}

.shot-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.85rem;
  padding: 1rem;
}

.shot-pill-row {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.shot-pill-row span {
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(236, 242, 253, 0.94);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.25rem 0.5rem;
}

.shot-left {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  padding: 0.85rem;
}

.line {
  height: 11px;
  border-radius: 999px;
  margin-bottom: 0.56rem;
  background: linear-gradient(90deg, rgba(231, 240, 255, 0.2), rgba(231, 240, 255, 0.5), rgba(231, 240, 255, 0.2));
}

.line.long {
  width: 94%;
}

.line.med {
  width: 78%;
}

.line.short {
  width: 62%;
}

.shot-right {
  display: grid;
  gap: 0.56rem;
}

.mini-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  color: rgba(236, 242, 253, 0.95);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.7rem;
  min-height: 66px;
  display: flex;
  align-items: flex-end;
}

.shot-glass {
  position: absolute;
  inset: auto 0 0 0;
  min-height: 38%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.82rem;
}

.value-card,
.point-pill,
.standout-card,
.module-card,
.faq-item,
.cta-panel {
  border-radius: var(--radius-md);
}

.value-card {
  background: transparent;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 1rem 0.9rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: #1f5fab;
}

.card-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.55rem;
  background: linear-gradient(145deg, rgba(20, 56, 104, 0.15), rgba(242, 166, 90, 0.13));
  border: 1px solid rgba(19, 42, 76, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.card-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #1f4d83;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(42, 102, 177, 0.25);
}

.value-card h2 {
  font-size: 0.93rem;
  margin-bottom: 0.3rem;
}

.value-card p {
  font-size: 0.84rem;
  margin: 0;
}

.point-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.point-pill {
  padding: 0.5rem 0.74rem;
  border: 1px solid rgba(19, 42, 76, 0.13);
  background: rgba(255, 255, 255, 0.7);
  color: #24324a;
  font-size: 0.84rem;
  font-weight: 600;
}

.standout-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.standout-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  padding: 1.05rem;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.standout-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 209, 102, 0.36);
}

.standout-icon {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  margin-bottom: 0.62rem;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(255, 209, 102, 0.16), rgba(242, 138, 99, 0.14));
  border: 1px solid rgba(255, 209, 102, 0.32);
}

.standout-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #ffd98a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-section {
  position: relative;
  overflow: clip;
}

.comparison-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.comparison-blob-left {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 12%;
  background: var(--comp-blob1);
}

.comparison-blob-right {
  width: 250px;
  height: 250px;
  right: -95px;
  bottom: 6%;
  background: var(--comp-blob2);
}

.comparison-shell {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding: 0.95rem;
  background:
    radial-gradient(420px 180px at 10% 0%, rgba(80, 148, 255, 0.12), transparent 75%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 246, 0.76));
  border: 1px solid rgba(19, 42, 76, 0.2);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.standout-card p {
  margin: 0;
}

.table-wrap {
  margin-top: 0;
  border-radius: 16px;
  overflow-x: auto;
  border: 1px solid rgba(19, 42, 76, 0.14);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

table th:first-child,
table td:first-child {
  width: 28%;
}

table th:nth-child(2),
table td:nth-child(2),
table th:nth-child(3),
table td:nth-child(3) {
  width: 36%;
}

th,
td {
  text-align: left;
  border-bottom: 1px solid rgba(19, 42, 76, 0.08);
  padding: 0.92rem 0.92rem;
  font-size: 0.88rem;
  vertical-align: middle;
  overflow-wrap: break-word;
}

th {
  background: linear-gradient(180deg, rgba(19, 42, 76, 0.08), rgba(19, 42, 76, 0.03));
  color: #21324f;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.auth-col-header {
  background: linear-gradient(180deg, rgba(27, 93, 179, 0.13), rgba(27, 93, 179, 0.06));
}

.col-badge {
  display: block;
  margin: 0.25rem 0 0;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  box-sizing: border-box;
  color: #21579b;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(33, 87, 155, 0.23);
  border-radius: 999px;
  padding: 0.2rem 0.4rem;
  width: fit-content;
}

td:first-child,
th:first-child {
  font-weight: 700;
}

tbody tr:nth-child(even) {
  background: rgba(19, 42, 76, 0.025);
}

tbody tr:hover {
  background: rgba(19, 42, 76, 0.06);
}

.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
}

.feature-label::before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  flex-shrink: 0;
  border-radius: 2px;
  background: #2e71cc;
  box-shadow: 0 0 0 2px rgba(46, 113, 204, 0.2);
}

.auth-col {
  background: linear-gradient(180deg, rgba(46, 113, 204, 0.09), rgba(46, 113, 204, 0.03));
}

.state {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.82rem;
  color: #24334d;
}

.state svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.state-positive svg {
  stroke: #1fa089;
}

.state-neutral svg {
  stroke: #6d7a90;
}

.state-muted {
  color: #6b7486;
}

.state-muted svg {
  stroke: #8b97ab;
}

.state-positive {
  color: #1e5a4f;
}

.state-neutral {
  color: #5e6d85;
}

.showcase-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  overflow: clip;
}

.module-card {
  margin: 0;
  padding: 0.9rem;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.56);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  cursor: zoom-in;
  position: relative;
  overflow: visible;
}

.module-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 28px 52px rgba(10, 22, 41, 0.2), 0 0 0 2px rgba(46, 113, 204, 0.32);
}

.module-card:hover .module-img {
  filter: brightness(1.07);
}

/* zoom-in hint badge */
.module-card::after {
  content: '';
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(46, 113, 204, 0.9) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8.5' cy='8.5' r='4.5'/%3E%3Cpath d='M15 15l-3.2-3.2'/%3E%3Cpath d='M8.5 6.5v4M6.5 8.5h4'/%3E%3C/svg%3E") center/18px no-repeat;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  z-index: 3;
}

.module-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.module {
  min-height: 218px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: linear-gradient(150deg, #172d4d, #0b1525 74%);
  position: relative;
}

.module::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px 140px at 82% 10%, rgba(242, 138, 99, 0.22), transparent 68%);
}

.module::after {
  content: "";
  position: absolute;
  inset: auto 8% 12% 8%;
  height: 42%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.module-topbar {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0 0.68rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.module-topbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.module-ui {
  margin: 0.72rem;
  height: calc(100% - 46px);
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.module-ui::before,
.module-ui::after {
  content: "";
  position: absolute;
}

.module-ui::before {
  inset: 12% auto auto 8%;
  width: 64%;
  height: 10px;
  border-radius: 999px;
  background: rgba(238, 244, 255, 0.42);
}

.module-ui::after {
  inset: auto 8% 10% auto;
  width: 35%;
  height: 46%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.module-ui-character::before {
  width: 48%;
}

.module-ui-plot::after {
  width: 42%;
}

.module-ui-ai::before {
  width: 56%;
}

.module-editor {
  background: linear-gradient(145deg, #132949, #0b1629);
}

.module-character {
  background: linear-gradient(145deg, #1b3558, #121a2c);
}

.module-plot {
  background: linear-gradient(145deg, #17314b, #111828);
}

.module-ai {
  background: linear-gradient(145deg, #1f3256, #121f34);
}

.module-card figcaption {
  margin-top: 0.58rem;
  font-size: 0.89rem;
  font-weight: 600;
  color: #33445f;
}

.module-img {
  width: 100%;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

[data-lightbox] {
  cursor: zoom-in;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8, 15, 28, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  display: block;
  object-fit: contain;
  transform: scale(0.94);
  transition: transform 0.25s ease;
}

.lightbox.is-open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}

.faq-list {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.82rem;
}

.faq-item {
  border: 1px solid rgba(19, 42, 76, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.74));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.faq-item h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-right: 0.95rem;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 1rem 0.95rem;
  color: #1a2740;
  font-weight: 700;
  cursor: pointer;
  display: block;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background: rgba(19, 42, 76, 0.04);
}

.faq-question:focus-visible {
  outline: 2px solid rgba(42, 102, 177, 0.36);
  outline-offset: -2px;
}

.faq-chevron {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(208, 107, 71, 0.28);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  stroke: #cf704e;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(242, 166, 90, 0.16);
  border-color: rgba(208, 107, 71, 0.38);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

.faq-item.open .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin: 0;
  padding: 0 0.95rem 1.05rem;
}

.final-cta {
  padding-top: clamp(3rem, 4.6vw, 4.5rem);
}

.cta-panel {
  text-align: center;
  padding: clamp(1.5rem, 3.7vw, 2.4rem);
  border: 1px solid rgba(242, 138, 99, 0.34);
  background:
    radial-gradient(480px 180px at 15% 0%, rgba(255, 209, 102, 0.23), transparent 65%),
    radial-gradient(520px 220px at 100% 90%, rgba(80, 148, 255, 0.2), transparent 72%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(255, 246, 240, 0.78));
  box-shadow: 0 24px 48px rgba(10, 22, 41, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(242, 138, 99, 0.2);
  filter: blur(24px);
}

.cta-trust {
  margin: 0.95rem 0 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.52rem;
  padding: 0;
}

.cta-trust li {
  border-radius: 999px;
  border: 1px solid rgba(19, 42, 76, 0.15);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2a3852;
}

/* Competitor Tabs */
.competitor-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.comp-tab {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 42, 76, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: #3a4d68;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.comp-tab:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(31, 95, 171, 0.3);
  color: #1f5fab;
}

.comp-tab.active {
  background: linear-gradient(130deg, #1f5fab, #2a6dc5);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 10px rgba(31, 95, 171, 0.28);
}

.comparison-citation {
  margin-top: 0.85rem;
  font-size: 0.76rem;
  color: #7a8da6;
  line-height: 1.5;
  padding: 0 0.25rem;
}

.comparison-citation a {
  color: #356db6;
  text-decoration: underline;
}

/* Clean FAQ (main-page style) */
.faq-list-clean {
  display: flex;
  flex-direction: column;
  margin-top: 1.8rem;
}

.faq-item-clean {
  border-bottom: 1px solid rgba(19, 42, 76, 0.12);
}

.faq-item-clean:last-child {
  border-bottom: none;
}

.faq-btn-clean {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-btn-clean:focus-visible {
  outline: 2px solid rgba(42, 102, 177, 0.36);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-q-clean {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1a2740;
  line-height: 1.4;
}

.faq-chev-clean {
  font-size: 1.45rem;
  color: var(--dark-orange);
  line-height: 1;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  display: inline-block;
}

.faq-item-clean.faq-open .faq-chev-clean {
  transform: rotate(90deg);
}

.faq-answer-clean {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}

.faq-item-clean.faq-open .faq-answer-clean {
  grid-template-rows: 1fr;
}

.faq-answer-clean > div {
  overflow: hidden;
}

.faq-a-clean {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin: 0 0 20px;
  line-height: 1.7;
  padding-right: 28px;
}

footer {
  background: transparent;
  text-align: center;
  padding: 20px 24px 30px;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
  margin: 0;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 48px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04);
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}

.footer-nav a {
  color: var(--text-dark);
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
  padding: 4px 8px;
  white-space: nowrap;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-separator {
  color: var(--text-dark);
  opacity: 0.5;
  margin: 0 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  color: var(--text-dark);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 248, 244, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-gif {
  max-width: 80px;
  width: 100%;
  height: auto;
  display: block;
}


/* ── Nav: hero padding for fixed bars ───────────────────────── */
@media (min-width: 769px) {
  .hero.section {
    padding-top: calc(70px + clamp(2rem, 5vw, 4rem));
  }
}
@media (max-width: 768px) {
  .hero.section {
    padding-top: clamp(4.5rem, 10vw, 6rem);
  }
  .desktop-nav { display: none !important; }
}

/* ── Prevent nav links from wrapping ───────────────────────── */
.desktop-nav-links a {
  white-space: nowrap;
}

.icon-link {
  display: block;
  pointer-events: auto;
}

.icon-link img {
  pointer-events: auto;
}

/* ── Download Modal (identical to main page) ───────────────── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 550px;
  width: 90%;
  max-height: 88vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  color: var(--text-dark);
  animation: fadeInScale 0.3s ease;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 200px;
  height: 180px;
  background: var(--mockup-accent2, rgba(19, 42, 76, 0.5));
  border-radius: 50%;
  filter: blur(35px);
  z-index: -1;
  will-change: transform;
  animation: blobFloat1 8s ease-in-out infinite;
}

.modal-content::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -50px;
  width: 180px;
  height: 160px;
  background: var(--mockup-accent1, rgba(242, 138, 99, 0.5));
  border-radius: 50%;
  filter: blur(35px);
  z-index: -1;
  will-change: transform;
  animation: blobFloat2 10s ease-in-out infinite reverse;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.8rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  line-height: 1;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
}

.modal-close:hover {
  transform: scale(1.1);
}

/* ── Privacy / Terms modal — scrollable body ── */
.privacy-modal-content {
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: left;
  max-width: 640px;
  max-height: 88vh;
  overflow: hidden;
}

.privacy-modal-content .modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 2;
  color: var(--text-dark);
}

.privacy-scroll-area {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 30px 24px;
}

.privacy-body h2 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  padding-right: 2rem; /* avoid close btn overlap */
}

.privacy-body h3 {
  font-size: 1rem;
  margin: 1.2rem 0 0.3rem;
  color: var(--text-dark);
}

.privacy-body h4 {
  font-size: 0.9rem;
  margin: 0.9rem 0 0.2rem;
  color: var(--text-dark);
}

.privacy-body p,
.privacy-body li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.privacy-body ul {
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.privacy-body a {
  color: var(--bright-orange);
  text-decoration: underline;
}

.privacy-effective {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.modal-view-page-bar {
  flex-shrink: 0;
  border-top: 1px solid rgba(19, 42, 76, 0.1);
  padding: 12px 20px;
  text-align: center;
}

.modal-view-page-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-orange);
  text-decoration: none;
}

.modal-view-page-btn:hover {
  text-decoration: underline;
}

.modal-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1f3a;
}

.modal-content p {
  color: #5c6678;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.feedback-btn {
  background-color: var(--bright-orange);
  color: var(--white);
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}
.feedback-btn:hover {
  background-color: var(--dark-orange);
}

.modal-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
}

.icon-link img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.2s ease, filter 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.icon-link img[src*="download-windows"] {
  border: 1px solid #000;
  border-radius: 8px;
  padding: 8px;
}

.icon-link img:hover {
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* Larger Download Modal */
.download-modal-large {
  max-width: 700px !important;
  padding: 50px 40px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #2c2c2e !important;
}

#downloadModal .modal-close {
  color: white !important;
  opacity: 0.6;
  background: none !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

#downloadModal .modal-close:hover {
  opacity: 1;
  background: none !important;
  transform: scale(1.1) !important;
  box-shadow: none !important;
}

/* Version History Section */
.version-history-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.version-history-list {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
}

.version-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c2c2e !important;
  margin-bottom: 20px;
  text-align: left;
}

.version-item {
  background: rgba(255, 255, 255, 0.5) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}

.version-item:last-child {
  margin-bottom: 0;
}

.version-header {
  width: 100%;
  padding: 16px 20px;
  background: transparent !important;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: background 0.2s ease;
}

.version-header:hover {
  background: rgba(255, 255, 255, 0.4);
}

.version-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.version-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2e !important;
  margin: 0;
}

.toggle-icon {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
  color: #2c2c2e !important;
  opacity: 0.6;
}

.version-header.active .toggle-icon {
  transform: rotate(180deg);
}

.version-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.version-badge.current {
  background: linear-gradient(135deg, var(--bright-orange), #ff8c42);
  color: white;
}

.version-badge.upcoming {
  background: linear-gradient(135deg, #132a4c, #1e3a5f);
  color: white;
}

.version-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: #2c2c2e !important;
  opacity: 0.85;
  line-height: 1.6;
}

.version-description.expanded {
  max-height: 300px;
  padding: 0 20px 16px 20px;
}

.version-description p {
  margin: 0;
  font-size: 0.95rem;
  text-align: left;
}

@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0px, 0px) scale(1); }
  25% { transform: translate(-15px, -10px) scale(1.05); }
  50% { transform: translate(-8px, 5px) scale(0.95); }
  75% { transform: translate(10px, -5px) scale(1.02); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0px, 0px) scale(1); }
  25% { transform: translate(12px, -8px) scale(1.08); }
  50% { transform: translate(6px, 10px) scale(0.92); }
  75% { transform: translate(-10px, 6px) scale(1.05); }
}

/* ── Pricing Modal ──────────────────────────────────────── */
.pricing-modal-content {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 50px 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  animation: fadeInScale 0.3s ease;
}
.pricing-modal-content::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 200px; height: 180px;
  background: var(--mockup-accent2, rgba(19, 42, 76, 0.5));
  border-radius: 50%;
  filter: blur(35px);
  z-index: -1;
  animation: blobFloat1 8s ease-in-out infinite;
}
.pricing-modal-content::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -50px;
  width: 180px; height: 160px;
  background: var(--mockup-accent1, rgba(242, 138, 99, 0.5));
  border-radius: 50%;
  filter: blur(35px);
  z-index: -1;
  animation: blobFloat2 10s ease-in-out infinite reverse;
}
.pricing-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1f3a;
  margin-bottom: 10px;
  line-height: 1.2;
}
.pricing-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 30px;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff8a5e 0%, #f28a63 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 35px;
  gap: 4px;
}
.price-symbol { font-size: 2rem; font-weight: 700; color: #1a1f3a; }
.price-amount { font-size: 4rem; font-weight: 700; color: #1a1f3a; line-height: 1; }
.price-period { font-size: 1.2rem; color: #4a5568; font-weight: 500; }
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #2d3748;
}
.pricing-features li:last-child { margin-bottom: 0; }
.subscribe-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff8a5e 0%, #f28a63 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 138, 99, 0.3);
}
.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 138, 99, 0.4);
}
.pricing-helper-note {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: #9aa0ac;
  text-align: center;
  line-height: 1.5;
}

/* ── Feedback Form ──────────────────────────────────────── */
#feedbackForm textarea {
  width: 100%;
  height: 120px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid var(--bright-orange);
  font-size: 1rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  resize: vertical;
  margin-bottom: 24px;
  background-color: #fffaf6;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: border 0.3s ease, background 0.3s ease;
}
#feedbackForm textarea:focus {
  border-color: var(--dark-orange);
  outline: none;
  background-color: #fff5ef;
}
.submit-btn {
  background-color: var(--bright-orange);
  color: var(--white);
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-btn:hover { background-color: var(--dark-orange); }
.overlay-status {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.spinner, .checkmark {
  width: 48px; height: 48px;
  display: none;
  margin: auto;
}
.spinner {
  border: 4px solid #fff;
  border-top: 4px solid var(--bright-orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.checkmark {
  font-size: 3rem;
  color: var(--bright-orange);
  font-weight: bold;
}
@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

/* ── Nav-active link style ──────────────────────────────────── */
.desktop-nav-links .nav-active {
  color: #2e71cc !important;
  font-weight: 700;
}
.desktop-nav-links .nav-active::after {
  background-color: #2e71cc !important;
  width: 100% !important;
}



/* ── 1080px ──────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .comparison-shell {
    padding: 0.68rem;
  }
}

/* ── 920px ──────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero-grid,
  .standout-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 740px;
  }
  .hero-shot {
    max-width: 100%;
  }
  .hero-img {
    max-width: 100%;
  }
  .col-badge {
    white-space: nowrap;
  }
}

/* ── 700px ──────────────────────────────────────────────────── */
@media (max-width: 700px) {
  :root {
    --container: min(1160px, calc(100% - 1.35rem));
  }
  .section {
    padding: 2.5rem 0;
  }
  .section-tight {
    padding-block: 1.5rem 2rem;
  }
  .topbar-inner {
    min-height: 64px;
  }
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  .value-card {
    padding: 0.8rem 0.75rem;
  }
  .value-card h2 {
    font-size: 0.85rem;
  }
  .value-card p {
    font-size: 0.78rem;
  }
  h1 {
    font-size: clamp(1.45rem, 5.5vw, 2.1rem);
  }
  .eyebrow {
    font-size: 0.7rem;
  }
  .lead {
    font-size: 0.9rem;
  }
  .trust-list {
    gap: 0.4rem;
  }
  .trust-list li {
    font-size: 0.68rem;
    padding: 0.22rem 0.44rem;
  }
  .trust-hide-mobile {
    display: none;
  }
  .pill-hide-mobile {
    display: none;
  }
  .competitor-tabs {
    flex-wrap: wrap;
  }
  .comp-tab {
    font-size: 0.76rem;
    padding: 0.38rem 0.7rem;
  }
  .comparison-shell {
    border-radius: 18px;
    padding: 0.55rem;
  }
  .table-wrap {
    border-radius: 14px;
  }
  table {
    width: 100%;
  }
  th,
  td {
    padding: 0.5rem 0.4rem;
    font-size: 0.72rem;
  }
  .state,
  .feature-label {
    font-size: 0.72rem;
  }
  .standout-grid {
    grid-template-columns: 1fr;
  }
  .point-pill {
    font-size: 0.78rem;
    padding: 0.42rem 0.62rem;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .module {
    min-height: 160px;
  }
  .cta-panel {
    padding: 1.5rem 1rem;
  }
  .faq-btn-clean {
    padding: 0.8rem 0.2rem;
  }
  .faq-q-clean {
    font-size: 0.9rem;
  }
  .brand-logo {
    width: 30px;
    height: 30px;
  }
  .hero-blob {
    filter: blur(32px);
  }
  .comparison-citation {
    font-size: 0.7rem;
  }
}

/* ── 480px ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: clamp(1.3rem, 6.5vw, 1.75rem);
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-row .btn {
    text-align: center;
  }
  table {
    width: 100%;
  }
  th,
  td {
    padding: 0.34rem 0.28rem;
    font-size: 0.64rem;
  }
  .state,
  .feature-label {
    font-size: 0.64rem;
  }
  .comp-tab {
    font-size: 0.71rem;
    padding: 0.34rem 0.58rem;
  }
  .section {
    padding: 1.8rem 0;
  }
  .comparison-shell {
    padding: 0.4rem;
  }
  .loader-gif {
    max-width: 60px;
  }
}

/* ── Footer responsive ───────────────────────────────────── */
@media (max-width: 640px) {
  /* ── Modal responsive fixes (width) ── */
  .modal-content {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .modal-content h2  { font-size: 1.35rem; }
  .modal-content p   { font-size: 0.875rem; }

  /* Privacy / Terms modal — reset padding override, go full-height */
  .privacy-modal-content {
    padding: 0;
    max-height: 92vh;
    width: 96%;
    border-radius: 14px;
  }
  .privacy-scroll-area {
    padding: 40px 18px 16px;
  }

  .pricing-modal-content {
    padding: 28px 18px;
    border-radius: 18px;
    width: 94%;
  }
  .pricing-title    { font-size: 1.4rem; }
  .pricing-subtitle { font-size: 0.9rem; margin-bottom: 16px; }
  .pricing-card     { padding: 20px 16px; }
  .trial-badge      { font-size: 0.82rem; padding: 7px 14px; margin-bottom: 14px; }
  .price-symbol     { font-size: 1.4rem; }
  .price-amount     { font-size: 2.8rem; }
  .price-period     { font-size: 1rem; }
  .price-display    { margin-bottom: 16px; }
  .pricing-features { margin: 0 0 16px 0; }
  .pricing-features li { font-size: 0.875rem; margin-bottom: 9px; }
  .subscribe-btn    { padding: 12px 20px; font-size: 1rem; }
  .pricing-helper-note { font-size: 0.74rem; }

  footer {
    padding: 20px 20px 30px;
  }

  .footer-container {
    padding: 24px 28px;
  }

  .footer-nav {
    font-size: 0.85rem;
    gap: 3px;
    flex-wrap: wrap;
  }

  .footer-nav a {
    font-size: 0.85rem;
    padding: 3px 4px;
  }

  .footer-separator {
    margin: 0 2px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 20px 24px 30px;
  }

  .footer-container {
    padding: 28px 32px;
    border-radius: 24px;
  }

  /* Remove scale on touch — prevents 2% right-edge overflow from sticky iOS hover */
  .module-card:hover {
    transform: translateY(-4px);
  }
}

/* Height-based compression — ensures no scrolling on shorter phones */
@media (max-height: 780px) {
  .pricing-modal-content {
    padding: 26px 20px;
  }
  .pricing-title    { font-size: 1.45rem; margin-bottom: 6px; }
  .pricing-subtitle { font-size: 0.9rem; margin-bottom: 12px; }
  .pricing-card     { padding: 18px 16px; }
  .trial-badge      { font-size: 0.8rem; padding: 7px 12px; margin-bottom: 12px; }
  .price-display    { margin-bottom: 14px; }
  .price-amount     { font-size: 2.6rem; }
  .price-symbol     { font-size: 1.3rem; }
  .price-period     { font-size: 0.9rem; }
  .pricing-features { margin: 0 0 14px 0; }
  .pricing-features li { font-size: 0.86rem; margin-bottom: 8px; }
  .subscribe-btn    { padding: 11px 18px; font-size: 0.95rem; }
  .pricing-helper-note { font-size: 0.7rem; margin-top: 5px; }
}

@media (max-height: 680px) {
  .pricing-modal-content {
    padding: 18px 16px;
  }
  .pricing-title    { font-size: 1.2rem; margin-bottom: 4px; }
  .pricing-subtitle { font-size: 0.8rem; margin-bottom: 8px; }
  .pricing-card     { padding: 12px 12px; }
  .trial-badge      { font-size: 0.74rem; padding: 5px 10px; margin-bottom: 8px; }
  .price-display    { margin-bottom: 8px; }
  .price-amount     { font-size: 2.1rem; }
  .price-symbol     { font-size: 1.05rem; }
  .price-period     { font-size: 0.82rem; }
  .pricing-features { margin: 0 0 8px 0; }
  .pricing-features li { font-size: 0.78rem; margin-bottom: 5px; gap: 8px; }
  .subscribe-btn    { padding: 9px 14px; font-size: 0.88rem; }
  .pricing-helper-note { font-size: 0.66rem; margin-top: 4px; }
  .modal-content    { padding: 24px 18px; }
  .modal-content h2 { font-size: 1.2rem; margin-bottom: 8px; }
  .modal-content p  { font-size: 0.82rem; margin-bottom: 7px; }
  .privacy-modal-content { padding: 0; }
  .privacy-scroll-area   { padding: 36px 16px 12px; }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
