/* ==========================================================================
   Schedlytics marketing + legal site
   Dark navy / cyan theme, matched to the app. No em dashes used anywhere.
   ========================================================================== */

:root {
  --navy-950: #0b1120;
  --navy-900: #0f172a;
  --navy-850: #121c30;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --cyan: #22d3ee;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --faint: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --gradient: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 55%, #6366f1 120%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--navy-950);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(900px 500px at 80% -10%, rgba(34, 211, 238, 0.12), transparent 60%),
    radial-gradient(700px 500px at 0% 0%, rgba(99, 102, 241, 0.1), transparent 55%);
  background-attachment: fixed;
}

a {
  color: var(--cyan);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--cyan);
}
.muted {
  color: var(--muted);
}

/* ---------------------------------------------------------------- nav ---- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 17, 32, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #fff;
}
.brand:hover {
  text-decoration: none;
}
.brand svg {
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover {
  color: #fff;
  text-decoration: none;
}

/* ------------------------------------------------------------- buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  padding: 11px 18px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background-image: var(--gradient);
  color: #0f172a;
  box-shadow: 0 0 24px -4px rgba(34, 211, 238, 0.55);
}
.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  text-decoration: none;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.18);
  text-decoration: none;
}
.btn-lg {
  padding: 14px 24px;
  font-size: 15px;
}

/* --------------------------------------------------------------- hero ---- */

.hero {
  text-align: center;
  padding: 72px 0 56px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* mock dashboard preview */
.preview {
  margin: 64px auto 0;
  max-width: 960px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--navy-850), var(--navy-900));
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.preview-bar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.preview-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}
.dot-r { background: #f87171; }
.dot-y { background: #fbbf24; }
.dot-g { background: #34d399; }
.preview-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px;
}
.preview-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
  text-align: left;
}
.preview-card .k {
  font-size: 13px;
  color: var(--faint);
}
.preview-card .v {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-top: 6px;
}
.preview-card .up {
  font-size: 12px;
  color: #34d399;
  font-weight: 600;
}
.preview-wide {
  grid-column: 1 / -1;
  height: 120px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0) 80%);
  position: relative;
  overflow: hidden;
}
.preview-wide svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* real product screenshot inside the browser frame */
.preview-img {
  display: block;
  width: 100%;
  height: auto;
}

/* animated demo (drag and drop gif) */
.demo-frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--navy-850), var(--navy-900));
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.demo-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.demo-caption {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

/* screenshot gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery figure {
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.5);
  overflow: hidden;
}
.gallery figure img {
  display: block;
  width: 100%;
  height: auto;
}
.gallery figcaption {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
@media (max-width: 860px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------- sections --- */

.section {
  padding: 56px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.5);
  padding: 26px;
}
.feature .ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(99, 102, 241, 0.18));
  color: var(--cyan);
  margin-bottom: 16px;
}
.feature h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}
.feature p {
  color: var(--muted);
  font-size: 15px;
}

/* platforms */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.5);
  color: var(--text);
  font-weight: 600;
}
.platform-pill .swatch {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}
.platform-pill svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

/* Growing platform support */
.plat-group-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  margin: 30px 0 14px;
}
.plat-group-label:first-of-type {
  margin-top: 8px;
}
.plat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 14px;
}
.plat-card {
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.4);
  border-radius: 16px;
  padding: 18px;
}
.plat-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.plat-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}
.plat-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}
.plat-card.soon .plat-icon svg {
  filter: grayscale(1);
  opacity: 0.65;
}
.plat-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.plat-status,
.plat-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.plat-status.available {
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
}
.plat-status.available svg {
  width: 12px;
  height: 12px;
}
.plat-badge {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
}
.plat-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

/* info tooltip next to the heading */
.plat-info {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--faint);
  cursor: help;
  outline: none;
}
.plat-info > svg {
  width: 19px;
  height: 19px;
}
.plat-tip {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  width: 264px;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0f172a;
  box-shadow: 0 14px 36px -12px rgba(0, 0, 0, 0.65);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  color: var(--muted);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  z-index: 6;
}
.plat-info:hover .plat-tip,
.plat-info:focus .plat-tip,
.plat-info:focus-within .plat-tip {
  opacity: 1;
  visibility: visible;
}

/* Early Access platform rollout note */
.ea-rollout {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ea-rollout-groups {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
}
.ea-rollout-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 8px;
}
.ea-rollout-label.available {
  color: #34d399;
}
.ea-rollout-label.soon {
  color: #fbbf24;
}
.ea-rollout-items {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.ea-rollout-note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

/* early-access sign-up form */
.ea-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 8px auto 0;
}
.ea-form input {
  flex: 1;
  min-width: 220px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(11, 17, 32, 0.6);
  color: var(--text);
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
}
.ea-form input:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}
.ea-result {
  margin-top: 14px;
  font-weight: 600;
  font-size: 15px;
  min-height: 20px;
}
.ea-result.ok {
  color: #6ee7b7;
}
.ea-result.err {
  color: #fca5a5;
}
#ea-spots {
  color: var(--cyan);
  font-weight: 600;
}

/* how it works: step descriptions under the flow */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.flow-steps > div {
  text-align: center;
}
.flow-steps h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}
.flow-steps p {
  color: var(--muted);
  font-size: 13px;
}
.flow-steps .soon {
  font-style: normal;
  margin-left: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--faint);
}

/* why different: comparison */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.compare-col {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.5);
  padding: 26px;
}
.compare-col.featured {
  border-color: rgba(34, 211, 238, 0.4);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.08), rgba(30, 41, 59, 0.5));
}
.compare-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
}
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 15px;
}
.compare-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 12px;
  height: 2px;
  background: var(--faint);
  border-radius: 2px;
}
.compare-list.check li {
  color: var(--text);
}
.compare-list.check li::before {
  content: '';
  left: 6px;
  top: 5px;
  width: 6px;
  height: 11px;
  background: transparent;
  border: solid var(--cyan);
  border-width: 0 2px 2px 0;
  border-radius: 0;
  transform: rotate(45deg);
}

/* two-up screenshot gallery (media + calendar) */
.gallery-2 {
  grid-template-columns: 1fr 1fr;
  max-width: 920px;
  margin: 0 auto;
}

/* early-access perks + spots line */
.ea-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
  max-width: 580px;
  margin: 4px auto 18px;
}
.ea-perks li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}
.ea-perks li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 5px;
  width: 6px;
  height: 11px;
  border: solid var(--cyan);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.ea-spots-line {
  margin-top: 14px;
  font-size: 14px;
}

/* growth coach trust line + data chips */
.analyzes-lead {
  text-align: center;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
}
.analyzes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}
.analyzes li {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.5);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

/* feature highlight line */
.feature .feat-highlight {
  color: var(--cyan);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

/* pricing: who each plan is for */
.perfect-for {
  margin: 2px 0 10px;
  font-size: 13px;
  color: var(--muted);
}
.perfect-for span {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

/* call to action band */
.cta-band {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(99, 102, 241, 0.12));
  padding: 56px 32px;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.cta-band p {
  color: var(--muted);
  margin-bottom: 28px;
}

/* -------------------------------------------------------------- footer --- */

.footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: auto;
}
.footer-links a {
  color: var(--muted);
  font-size: 14px;
}
.footer-links a:hover {
  color: #fff;
}
.footer .copy {
  width: 100%;
  color: var(--faint);
  font-size: 13px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ----------------------------------------------------------- legal doc --- */

.legal {
  padding: 56px 0 24px;
}
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}
.legal .updated {
  color: var(--faint);
  font-size: 14px;
  margin-bottom: 36px;
}
.legal h2 {
  color: #fff;
  font-size: 22px;
  margin: 36px 0 12px;
}
.legal h3 {
  color: #fff;
  font-size: 17px;
  margin: 22px 0 8px;
}
.legal p,
.legal li {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 12px;
}
.legal ul {
  padding-left: 22px;
  margin-bottom: 12px;
}
.legal .note {
  border-radius: 12px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.06);
  padding: 16px 18px;
  color: var(--text);
  font-size: 15px;
  margin: 24px 0;
}

/* ----------------------------------------------------------- del form ---- */

.card-panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.55);
  padding: 28px;
  margin: 28px 0;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(11, 17, 32, 0.6);
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}
.result {
  margin-top: 16px;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  display: none;
}
.result.ok {
  display: block;
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.1);
  color: #6ee7b7;
}
.result.err {
  display: block;
  border: 1px solid rgba(248, 113, 113, 0.3);
  background: rgba(248, 113, 113, 0.1);
  color: #fca5a5;
}

/* ----------------------------------------------------- hero two-column --- */

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}
.hero-copy .eyebrow {
  margin-bottom: 20px;
}
.hero-copy .hero-cta {
  justify-content: flex-start;
}
.preview.preview-hero {
  margin: 0;
  max-width: none;
}

/* ----------------------------------------------------- solution flow ----- */

.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.flow-node {
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.5);
  font-weight: 700;
  color: #fff;
}
.flow-node.accent-node {
  border-color: rgba(34, 211, 238, 0.4);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(99, 102, 241, 0.16));
  color: var(--cyan);
}
.flow-arrow {
  color: var(--cyan);
  font-size: 20px;
  font-weight: 700;
}

/* -------------------------------------------------------- workflow ------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.5);
  padding: 24px;
}
.step .n {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background-image: var(--gradient);
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 14px;
}
.step h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 6px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
}

/* --------------------------------------------------------- pricing ------- */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(30, 41, 59, 0.5);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card.featured {
  border-color: rgba(34, 211, 238, 0.4);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.08), rgba(30, 41, 59, 0.5));
  box-shadow: 0 0 40px -18px rgba(34, 211, 238, 0.6);
}
.price-tag {
  position: absolute;
  top: -11px;
  right: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background-image: var(--gradient);
  color: #0f172a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.price-card h3 {
  color: #fff;
  font-size: 18px;
}
.price-card .price {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.price-card.featured .price {
  color: var(--cyan);
}
.price-card .price .per {
  font-size: 16px;
  font-weight: 500;
  color: var(--faint);
}
/* early adopter: regular price struck through, locked-in note below */
.price-was {
  font-size: 14px;
  font-weight: 600;
  color: var(--faint);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.price-note {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
}
/* monthly / annual toggle */
.billing-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.billing-switch {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.billing-switch label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
}
.bs-opt em {
  font-style: normal;
  color: var(--cyan);
}
.bs-track {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease;
}
.bs-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--cyan);
  transition: transform 0.2s ease;
}
.billing-check:checked ~ .billing-switch .bs-track {
  background: rgba(34, 211, 238, 0.3);
}
.billing-check:checked ~ .billing-switch .bs-knob {
  transform: translateX(20px);
}
.billing-check:focus-visible ~ .billing-switch .bs-track {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
/* price swap: monthly shown by default, annual when toggled */
.price-annual {
  display: none;
}
.billing-check:checked ~ .pricing .price-monthly {
  display: none;
}
.billing-check:checked ~ .pricing .price-annual {
  display: inline;
}
.plan-lead {
  margin-top: -4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.price-features .soon {
  font-style: normal;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 8px;
}
.price-features li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 7px;
  width: 6px;
  height: 10px;
  border: solid var(--cyan);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.price-card .btn {
  justify-content: center;
  margin-top: auto;
}

/* ------------------------------------------------------------ responsive - */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .features {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .compare {
    grid-template-columns: 1fr;
  }
  .gallery-2 {
    grid-template-columns: 1fr;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .preview-body {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
}

/* ----------------------------------------------------- SEO landing pages -- */
.seo-hero {
  padding: 64px 0 36px;
  text-align: center;
}
.seo-hero .container {
  max-width: 760px;
}
.seo-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.08;
  margin: 14px 0 14px;
}
.seo-hero .lead {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 640px;
  margin: 0 auto 26px;
}
.seo-hero .hero-cta {
  justify-content: center;
}
.seo-figure {
  max-width: 980px;
  margin: 0 auto;
}
.seo-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.seo-prose {
  max-width: 820px;
  margin: 0 auto;
}
.seo-prose h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 14px;
}
.seo-prose p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 14px;
}
.seo-prose ul {
  padding-left: 22px;
  margin-bottom: 14px;
}
.seo-prose li {
  color: var(--muted);
  margin-bottom: 8px;
}
.seo-prose a {
  color: var(--cyan);
}

/* FAQ accordion */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.5);
  padding: 2px 18px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: var(--cyan);
  font-weight: 800;
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-item p {
  color: var(--muted);
  margin: 0 0 16px;
}

/* related-topic link cards */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.5);
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.related-card:hover {
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-2px);
}
.related-card h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
}
.related-card p {
  color: var(--muted);
  font-size: 14px;
}

/* UTM builder tool */
.utm {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.5);
  padding: 24px;
}
.utm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.utm label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  margin: 12px 0 6px;
}
.utm label .req {
  color: var(--cyan);
}
.utm input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
  font-size: 14px;
}
.utm input:focus {
  outline: none;
  border-color: var(--cyan);
}
.utm-out {
  margin-top: 18px;
}
.utm-out-label {
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}
.utm-url {
  word-break: break-all;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--cyan);
  font-size: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  min-height: 22px;
}
.utm-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 720px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .utm-row {
    grid-template-columns: 1fr;
  }
}
