/** Shopify CDN: Minification failed

Line 886:0 Unexpected "}"

**/
/*
 * TicNote Landing Page Styles
 * File: ticnote.css
 * Location: Assets/ticnote.css
 *
 * HOW TO INSTALL:
 * 1. In Shopify Admin → Online Store → Themes → Edit code
 * 2. Assets folder → Add new asset → Create blank file → name: ticnote.css
 * 3. Paste this entire file
 * 4. In Layout/theme.liquid add before </head>:
 *    {{ 'ticnote.css' | asset_url | stylesheet_tag }}
 */

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --white:    #f8f8fc;        /* near-white with a whisper of violet */
  --off:      #eeeef8;        /* light lavender-blue */
  --off2:     #e3e3f0;        /* slightly deeper purple-blue */
  --black:    #0e0f18;        /* near-black with deep blue-violet */
  --navy:     #1c1f3a;        /* dark blue-violet slate */
  --navy2:    #272b4d;        /* hover, slightly lighter */
  --navy3:    #111228;        /* darkest bg — deep violet-navy */
  --gray-1:   #20233c;        /* dark text on light */
  --gray-2:   #3c3f5e;        /* medium slate-violet */
  --gray-3:   #6e6f8e;        /* body text, muted violet-grey */
  --gray-4:   #9898b8;        /* labels, light violet-grey */
  --gray-5:   #d5d5e8;        /* borders, soft violet */
  --gray-6:   #eeeef8;        /* card hover */
  --accent:   #c0392b;        /* crimson accent */
  --purple:   rgba(130,110,200,0.08);   /* purple wash for cards */
  --purple2:  rgba(160,140,220,0.12);   /* stronger purple */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--black);
  font-family: 'Geist', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   HERO
   GemPages: Section, full-width, light blue → white
   IMAGE SLOT: eng1.png — hand holding device
   ═══════════════════════════════════════════ */
.hero {
  background: linear-gradient(180deg,
    #d8daf5 0%,
    #dde3f7 22%,
    #e8ecf8 48%,
    #f2f3fb 72%,
    #f8f8fc 100%
  );
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 24px 0;
  position: relative; overflow: hidden;
}
/* Subtle radial glow at top center */
.hero::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 700px; pointer-events: none;
  background: radial-gradient(ellipse at 50% 20%,
    rgba(180,170,255,0.38) 0%,
    rgba(200,205,255,0.18) 45%,
    transparent 72%);
}
/* Clean fade line at bottom merging into next section */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--white));
}

.hero-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gray-4);
  margin-bottom: 28px; position: relative; z-index: 2;
  display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gray-5);
}
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gray-5);
}
.rec-dot { display: none; }
@keyframes breathe { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.35;transform:scale(0.6)} }

.hero-h1 {
  font-family: 'Playfair Display', 'Instrument Serif', Georgia, serif;
  font-weight: 400; font-size: clamp(2.2rem, 5.5vw, 5.2rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--navy); max-width: 820px;
  position: relative; z-index: 2; margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gray-3);
}

.hero-sub {
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem); font-weight: 300;
  color: var(--gray-3); max-width: 480px;
  line-height: 1.8; letter-spacing: 0;
  position: relative; z-index: 2; margin-bottom: 36px;
}

/* AI model pills */
.ai-pills {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  position: relative; z-index: 2; margin-bottom: 40px;
}
.ai-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius-pill);
  padding: 8px 18px; backdrop-filter: blur(8px);
  font-size: 0.78rem; font-weight: 500;
  color: var(--gray-2); letter-spacing: 0.01em;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(100,140,200,0.08);
}
.ai-pill:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(100,140,200,0.3);
  box-shadow: 0 4px 16px rgba(100,140,200,0.12);
}
.ai-pill-dot {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  background: rgba(100,130,200,0.35);
}

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  position: relative; z-index: 2; margin-bottom: 52px;
}

/* Hero product image container
   ──────────────────────────────
   GemPages: Image element
   Replace placeholder with: eng1.png (hand holding TicNote from front)
   Set: object-fit contain, no crop
   ──────────────────────────────── */
.hero-device {
  position: relative; z-index: 2;
  width: 100%; max-width: 400px;
  margin: 0 auto;
  animation: floatUp 6s ease-in-out infinite;
}
@keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-device img { width: 100%; filter: drop-shadow(0 32px 60px rgba(60,80,140,0.18)); }

/* placeholder until real image added */
.img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, rgba(200,218,248,0.25), rgba(220,232,252,0.12));
  border: 1px solid rgba(160,190,240,0.2);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
}
.img-placeholder span {
  font-family: 'Geist Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-4);
}
.img-placeholder-icon { opacity: 0.3; color: var(--gray-3); }

/* ═══════════════════════════════════════════
   TICKER STRIP
   GemPages: Custom HTML block, full width
   ═══════════════════════════════════════════ */
.ticker-wrap {
  background: rgba(210,210,248,0.60); overflow: hidden; padding: 13px 0;
  border-top: 1px solid rgba(160,150,225,0.25);
  border-bottom: 1px solid rgba(160,150,225,0.25);
  backdrop-filter: blur(8px);
}
.ticker-track {
  display: flex; animation: ticker 28s linear infinite;
  white-space: nowrap; width: max-content;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 0 24px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-3);
}
.ticker-item b { color: var(--navy); }
.tdot { color: var(--gray-5); font-size: 1rem; }

/* ═══════════════════════════════════════════
   VALUE PROP SECTION
   GemPages: 2-col row — left text, right image
   IMAGE SLOT: eng2.png (hand holding TicNote leather)
   ═══════════════════════════════════════════ */
.value-section {
  padding: 100px 48px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.value-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-4); margin-bottom: 20px; display: block;
}
.value-h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400; font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.03em;
  color: var(--black); margin-bottom: 18px;
}
.value-h2 em { font-style: italic; color: var(--gray-3); }
.value-h2 .highlight { color: var(--accent); font-style: italic; }
.value-body {
  font-size: 0.95rem; font-weight: 300; color: var(--gray-3);
  line-height: 1.75; letter-spacing: -0.005em; margin-bottom: 28px;
}
.value-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 80px rgba(20,20,18,0.12);
  background: var(--off);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
/* IMAGE SLOT: Replace .img-placeholder with <img src="YOUR_CDN/eng2.png"> */

/* ═══════════════════════════════════════════
   USE CASES SECTION
   GemPages: Section with heading + 3-col card row
   ═══════════════════════════════════════════ */
.usecases-section {
  background: var(--off);
  padding: 96px 48px;
  position: relative;
}
.usecases-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-4); margin-bottom: 20px; display: block;
}
.section-h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.03em;
  color: var(--black); margin-bottom: 56px;
}
.section-h2 em { font-style: italic; color: var(--gray-3); }

.usecase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.usecase-card {
  background: var(--white);
  border-radius: var(--radius-md); padding: 36px 32px;
  border: 1px solid transparent;
  transition: all 0.25s;
}
.usecase-card:hover {
  border-color: rgba(130,110,200,0.25);
  box-shadow: 0 8px 40px rgba(100,80,180,0.08);
  transform: translateY(-4px);
}
.uc-icon { margin-bottom: 20px; color: var(--navy); }
.uc-title {
  font-size: 1rem; font-weight: 600; color: var(--navy);
  letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.3;
}
.uc-body {
  font-size: 0.87rem; font-weight: 300; color: var(--gray-3);
  line-height: 1.7;
}
.uc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.82rem; font-weight: 500; color: var(--navy);
  margin-top: 16px; transition: gap 0.2s;
}
.uc-link:hover { gap: 8px; }

/* ═══════════════════════════════════════════
   FEATURE 3-COL SECTION
   GemPages: 3-col row, each col is a text block
   IMAGE SLOTS: feature screenshots/app mockups
   ═══════════════════════════════════════════ */
.features3-section { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.features3-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--gray-5);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius-md); overflow: hidden;
  margin-top: 56px;
}
.f3-card {
  background: var(--white); padding: 40px 36px;
  transition: background 0.2s; position: relative;
  border-left: none;
}
.f3-card:hover { background: var(--off); }
.f3-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--off); border-radius: var(--radius-pill);
  padding: 5px 12px; margin-bottom: 24px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-3);
}
.f3-tag-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-3); }
.f3-title {
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.3;
}
.f3-body {
  font-size: 0.88rem; font-weight: 300; color: var(--gray-3);
  line-height: 1.7; margin-bottom: 20px;
}
.f3-learn {
  font-size: 0.82rem; font-weight: 500; color: var(--navy);
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.f3-learn:hover { gap: 8px; }
/* IMAGE SLOT inside f3-card: app screenshots, mockups */
.f3-img {
  margin-top: 24px; border-radius: var(--radius-sm);
  overflow: hidden; background: var(--off);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════════════════════════════════════════
   3 ICON BLOCKS
   GemPages: 3-col row
   ═══════════════════════════════════════════ */
.icon3-section {
  background: var(--white); padding: 80px 48px;
  border-top: 1px solid var(--gray-5);
  border-bottom: 1px solid var(--gray-5);
}
.icon3-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--gray-5); border: 1px solid var(--gray-5);
  border-radius: var(--radius-md); overflow: hidden;
}
.i3-card {
  background: var(--white); padding: 44px 36px;
  transition: background 0.2s;
}
.i3-card:hover { background: var(--gray-6); }
.i3-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.i3-title {
  font-size: 1rem; font-weight: 600; color: var(--navy);
  letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.3;
}
.i3-body {
  font-size: 0.88rem; font-weight: 300; color: var(--gray-3);
  line-height: 1.7; margin-bottom: 16px;
}
.i3-spec {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem; color: var(--gray-4); letter-spacing: 0.06em;
  margin-top: 8px;
}
.i3-spec b { color: var(--navy); }

/* ═══════════════════════════════════════════
   SHADOW AI SECTION (dark)
   GemPages: Full-width dark section
   ═══════════════════════════════════════════ */
.shadow-section {
  background: var(--white);
  padding: 96px 48px;
  position: relative; overflow: hidden;
  margin-top: 0;
  border-top: 1px solid var(--gray-5);
  border-bottom: 1px solid var(--gray-5);
}
.shadow-section::after { display: none; }
.shadow-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.035;
  background-image: radial-gradient(circle, rgba(130,100,200,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}
.shadow-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(150,120,240,0.07) 0%, transparent 65%);
}
.shadow-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.shadow-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px; gap: 40px;
}
.shadow-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-4); margin-bottom: 20px;
}
.shadow-h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1; letter-spacing: -0.03em; color: var(--navy);
  max-width: 600px;
}
.shadow-h2 em { color: var(--gray-3); font-style: italic; }
.shadow-price {
  text-align: right; flex-shrink: 0;
}
.shadow-price-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-4); margin-bottom: 6px;
}
.shadow-price-val {
  font-family: 'Geist', sans-serif;
  font-size: 1.8rem; font-weight: 300; color: var(--navy);
  letter-spacing: -0.04em;
}
.shadow-price-val span { font-size: 0.9rem; opacity: 0.4; }

/* AI logos */
.shadow-logos {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.shadow-logo-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius-pill); padding: 9px 18px;
  font-size: 0.85rem; font-weight: 500; color: var(--gray-2);
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(100,80,180,0.06);
}
.shadow-logo-pill:hover { background: var(--off); border-color: rgba(130,100,200,0.3); }
.slp-icon {
  width: 18px; height: 18px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Geist Mono', monospace;
  font-size: 8px; font-weight: 600; color: var(--navy);
  letter-spacing: 0;
  background: var(--off2);
}

/* Big question / demo */
.shadow-demo {
  background: var(--off);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius-lg); padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.shadow-question {
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.2; letter-spacing: -0.025em; color: #fff;
  margin-bottom: 20px;
}
.shadow-question em { color: var(--gray-3); font-style: italic; }
.shadow-caption {
  font-size: 0.9rem; font-weight: 300;
  color: var(--gray-3); line-height: 1.7;
}
.shadow-steps-col { display: flex; flex-direction: column; gap: 0; }
.shadow-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-5);
}
.shadow-step:first-child { border-top: 1px solid var(--gray-5); }
.ss-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.65rem; color: var(--gray-4);
  letter-spacing: 0.1em; padding-top: 2px; min-width: 20px;
}
.ss-title { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.01em; }
.ss-body { font-size: 0.82rem; font-weight: 300; color: var(--gray-3); line-height: 1.6; }

/* ═══════════════════════════════════════════
   SMARTPHONE COMPARISON
   GemPages: 2-col section
   IMAGE SLOTS: device side view photos (eng7.png / eng8.png)
   ═══════════════════════════════════════════ */
.compare-section { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.compare-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 80px rgba(20,20,18,0.1);
  background: var(--off); aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
/* IMAGE SLOT: eng8.png (TicNote attached to iPhone) */

.compare-specs { display: flex; flex-direction: column; gap: 0; }
.cs-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-5);
  font-size: 0.9rem; font-weight: 400; color: var(--navy);
}
.cs-row:first-child { border-top: 1px solid var(--gray-5); }
.cs-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gray-3);
}
.cs-val {
  font-family: 'Geist Mono', monospace;
  font-size: 0.8rem; color: var(--gray-4);
  margin-left: auto;
}
.cs-val b { color: var(--navy); }

/* ═══════════════════════════════════════════
   COMPARISON TABLE
   GemPages: Custom HTML or table element
   ═══════════════════════════════════════════ */
.table-section {
  background: var(--off);
  padding: 96px 48px;
}
.table-inner { max-width: 900px; margin: 0 auto; }
.table-header { text-align: center; margin-bottom: 56px; }
.comparison-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--gray-5);
}
.comparison-table thead tr {
  background: linear-gradient(90deg, var(--navy) 0%, #272b4d 100%);
}
.comparison-table thead th {
  padding: 22px 28px; text-align: left;
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.comparison-table thead th:last-child { border-right: none; }
.comparison-table thead th:first-child { width: 52%; }
.comparison-table thead th.ticnote-col {
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.05);
}
.comparison-table thead th.other-col { color: rgba(255,255,255,0.35); }
.comparison-table thead .price-sub {
  display: block; font-size: 0.68rem; font-weight: 400;
  font-family: 'Geist Mono', monospace; opacity: 0.5;
  letter-spacing: 0.04em; margin-top: 4px;
}
.comparison-table tbody tr {
  background: var(--white);
  border-bottom: 1px solid var(--gray-5);
  transition: background 0.15s;
}
.comparison-table tbody tr:hover { background: var(--off); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody td {
  padding: 15px 28px; font-size: 0.87rem;
  font-weight: 400; color: var(--gray-2);
  letter-spacing: -0.01em;
  border-right: 1px solid var(--gray-5);
}
.comparison-table tbody td:last-child { border-right: none; }
.comparison-table tbody td.check-ticnote {
  text-align: center; color: var(--navy);
  font-size: 0.9rem; font-weight: 600;
  background: rgba(100,130,200,0.03);
}
.comparison-table tbody td.check-other {
  text-align: center; color: var(--gray-5); font-size: 1rem;
}
.check-yes::after {
  content: '✓';
  color: var(--navy); font-size: 0.9rem; font-weight: 700;
  display: inline-block;
  width: 22px; height: 22px; line-height: 22px;
  background: rgba(100,130,200,0.1);
  border-radius: 50%;
}
.check-no::after {
  content: '—';
  color: var(--gray-5); font-size: 0.8rem; font-weight: 300;
  font-family: 'Geist Mono', monospace;
}

/* ═══════════════════════════════════════════
   TRUSTED BY LOGOS
   GemPages: Logo list / Image row element
   ═══════════════════════════════════════════ */

.cta-section {
  background: linear-gradient(170deg, #d8daf5 0%, #e4e3f7 40%, #eeeef8 100%);
  padding: 100px 48px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(160,140,255,0.18) 0%, transparent 65%);
}
.cta-glow { display: none; }
.cta-inner { position: relative; z-index: 2; }

/* CTA device image slot */
.cta-device-img {
  width: 240px; margin: 0 auto 40px;
  /* IMAGE SLOT: eng5.png - hand holding TicNote sideways (shows thinness) */
}


.cta-actions {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}

/* ═══════════════════════════════════════════
   SHIPPING & RETURNS SECTION
   GemPages: Simple text/icon row section
   ═══════════════════════════════════════════ */
.shipping-section {
  padding: 80px 48px;
  background: var(--off);
  border-top: 1px solid var(--gray-5);
}
.shipping-inner {
  max-width: 1200px; margin: 0 auto;
}
.shipping-h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400; font-size: 1.8rem; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 40px;
}
.shipping-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.shipping-card {
  padding: 28px 24px; border: 1px solid var(--gray-5);
  border-radius: var(--radius-md); transition: all 0.2s;
}
.shipping-card:hover { border-color: rgba(100,130,200,0.5); box-shadow: 0 4px 20px rgba(100,130,200,0.08); }
.sc-icon { margin-bottom: 16px; color: var(--navy); }
.sc-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.01em; }
.sc-body { font-size: 0.82rem; font-weight: 300; color: var(--gray-3); line-height: 1.6; }

/* ═══════════════════════════════════════════
   SHARED UTILITIES
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.up { opacity: 1; transform: none; }
.delay1 { transition-delay: 0.08s; }
.delay2 { transition-delay: 0.16s; }
.delay3 { transition-delay: 0.24s; }

.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 28px; }

/* Waveform animation */
.waveform {
  display: flex; align-items: center; gap: 3px;
  height: 32px;
}
.w-bar {
  width: 2.5px; border-radius: 2px;
  animation: wv var(--d,1s) ease-in-out infinite alternate;
}
@keyframes wv {
  from { height: 3px; opacity: 0.25; }
  to { height: var(--h,20px); opacity: 1; }
}


/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(170deg, #d8daf5 0%, #e4e3f7 40%, #eeeef8 100%);
  padding: 100px 48px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(160,140,255,0.18) 0%, transparent 65%);
}
.cta-glow { display: none; }
.cta-inner { position: relative; z-index: 2; }
.cta-device-img {
  width: 240px; margin: 0 auto 40px;
}
.cta-h2 {
  font-family: 'Playfair Display', 'Instrument Serif', serif;
  font-weight: 400; font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.04; letter-spacing: -0.025em;
  color: var(--navy); margin-bottom: 16px;
}
.cta-h2 em { font-style: italic; color: var(--gray-3); }
.cta-sub {
  font-size: 1rem; font-weight: 300;
  color: var(--gray-3); max-width: 400px;
  margin: 0 auto; line-height: 1.7;
}

/* wave dividers removed */

/* ═══════════════════════════════════════════
   TABLET — 1024px and below
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {

  .value-section,
  .compare-grid,
  .agent-inner { gap: 48px; }

  .features3-grid { grid-template-columns: 1fr 1fr; }
  .features3-grid .f3-card:last-child { grid-column: span 2; }

  .usecase-grid { grid-template-columns: 1fr 1fr; }
  .usecase-grid .usecase-card:last-child { grid-column: span 2; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }


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

/* ═══════════════════════════════════════════
   MOBILE — 768px and below
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */

  /* ── GLOBAL SPACING ── */
  .section,
  .usecases-section,
  .features3-section,
  .icon3-section,
  .shadow-section,
  .compare-section,
  .table-section,

  .usecases-section { padding-top: 72px; padding-bottom: 72px; }
  .features3-section { padding-top: 72px; padding-bottom: 72px; }
  .shadow-section { padding-top: 72px; padding-bottom: 72px; }
  .compare-section { padding-top: 72px; }
  .table-section { padding-top: 72px; padding-bottom: 72px; }
  .cta-section { padding-top: 80px; padding-bottom: 80px; }

  /* ── HERO ── */
  .hero { padding: 90px 20px 0; min-height: auto; }
  .hero-h1 { font-size: clamp(1.9rem, 8vw, 3rem); letter-spacing: -0.03em; }
  .hero-sub { font-size: 0.92rem; max-width: 100%; }
  .hero-actions {
    flex-direction: column; width: 100%; gap: 10px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-device { max-width: 320px; }
  .ai-pills { gap: 6px; }
  .ai-pill { font-size: 0.76rem; padding: 7px 12px; }

  /* ── VALUE SECTION ── */
  .value-section {
    grid-template-columns: 1fr !important;
    gap: 36px; padding: 72px 20px;
  }
  .value-img-wrap { aspect-ratio: 4/3; }

  /* ── USE CASES ── */
  .usecase-grid { grid-template-columns: 1fr !important; }
  .usecase-grid .usecase-card:last-child { grid-column: span 1; }

  /* ── 3 FEATURE COLS ── */
  .features3-grid {
    grid-template-columns: 1fr !important;
    border-radius: var(--radius-md);
  }
  .features3-grid .f3-card:last-child { grid-column: span 1; }

  /* ── 3 ICON BLOCKS ── */
  .icon3-inner { grid-template-columns: 1fr !important; border-radius: var(--radius-md); }

  /* ── SHADOW AI ── */
  .shadow-top { flex-direction: column; gap: 20px; }
  .shadow-price { text-align: left; }
  .shadow-demo {
    grid-template-columns: 1fr !important;
    padding: 28px 24px; gap: 32px;
  }
  .shadow-logos { gap: 8px; }
  .shadow-logo-pill { font-size: 0.78rem; padding: 7px 14px; }

  /* ── COMPARE ── */
  .compare-grid { grid-template-columns: 1fr !important; gap: 36px; }
  .compare-img-wrap { aspect-ratio: 4/3; }

  /* ── COMPARISON TABLE ── */
  .comparison-table thead th,
  .comparison-table tbody td { padding: 14px 16px; font-size: 0.82rem; }
  .comparison-table thead th:first-child { width: auto; }

  /* ── LOGOS ── */

  /* ── REVIEWS ── */
    grid-template-columns: 1fr !important;
  }

  /* ── CTA ── */
  .cta-h2 { font-size: clamp(2rem, 8vw, 3.2rem); }
  .cta-actions { flex-direction: column; width: 100%; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-device-img { width: 180px; }

  /* ── SHIPPING ── */
  .shipping-section { padding-top: 60px; padding-bottom: 60px; }
  .shipping-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .shipping-h3 { font-size: 1.4rem; margin-bottom: 28px; }

  /* ── FOOTER ── */
  footer { padding: 44px 20px 32px; }
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column; align-items: flex-start; gap: 16px;
  }
  .footer-legal { flex-wrap: wrap; gap: 12px; }

  /* ── SECTION HEADINGS ── */
  .section-h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .value-h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .shadow-h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .shadow-question { font-size: clamp(1.4rem, 5vw, 2rem); }
  .cta-sub { max-width: 100%; }
}

/* ═══════════════════════════════════════════
   SMALL PHONE — 390px and below
   ═══════════════════════════════════════════ */
@media (max-width: 390px) {
  .hero-h1 { font-size: 1.75rem; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.12em; }
  .ai-pill { font-size: 0.72rem; padding: 6px 10px; }
  .btn-lg { padding: 14px 24px; font-size: 0.88rem; }
  .comparison-table { font-size: 0.78rem; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 12px 12px; }
}

/* ═══════════════════════════════════════════
   DARK MODE TOGGLE BUTTON
   ═══════════════════════════════════════════ */
.theme-toggle {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1000;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-5);
  box-shadow: 0 4px 20px rgba(100,80,180,0.12), 0 1px 4px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  color: var(--gray-3);
}
.theme-toggle:hover {
  background: var(--off);
  border-color: rgba(130,100,200,0.35);
  box-shadow: 0 6px 28px rgba(100,80,180,0.18);
  transform: scale(1.06);
}
.theme-toggle svg { width: 18px; height: 18px; transition: transform 0.4s cubic-bezier(.4,0,.2,1); }
.theme-toggle:hover svg { transform: rotate(20deg); }
.icon-sun, .icon-moon { position: absolute; transition: opacity 0.25s, transform 0.35s; }
.icon-moon { opacity: 0; transform: rotate(-30deg) scale(0.8); }
.icon-sun  { opacity: 1; transform: rotate(0) scale(1); }

/* ── DARK MODE OVERRIDES ─────────────────── */
html.dark {
  --white:    #0d0e1a;
  --off:      #131525;
  --off2:     #1a1c30;
  --black:    #e8e8f4;
  --navy:     #c8caec;
  --navy2:    #a8aadc;
  --navy3:    #08090f;
  --gray-1:   #d0d2ee;
  --gray-2:   #a0a2c4;
  --gray-3:   #7072a0;
  --gray-4:   #505278;
  --gray-5:   #252740;
  --gray-6:   #1a1c30;
  --accent:   #e05a4a;
  --purple:   rgba(130,110,200,0.15);
  --purple2:  rgba(160,140,220,0.2);
}

html.dark .theme-toggle {
  background: #1a1c30;
  border-color: #252740;
  color: #a0a2c4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
html.dark .theme-toggle:hover {
  background: #252740;
  border-color: rgba(130,100,200,0.5);
}
html.dark .icon-sun  { opacity: 0; transform: rotate(30deg) scale(0.8); }
html.dark .icon-moon { opacity: 1; transform: rotate(0) scale(1); }

/* Dark mode — hero gradient */
html.dark .hero {
  background: linear-gradient(180deg,
    #12102a 0%,
    #0f1020 35%,
    #0d0e1a 70%,
    #0d0e1a 100%
  ) !important;
}
html.dark .hero::before {
  background: radial-gradient(ellipse at 50% 20%,
    rgba(120,90,220,0.25) 0%,
    rgba(80,60,160,0.1) 45%,
    transparent 70%) !important;
}
html.dark .hero::after {
  background: linear-gradient(to bottom, transparent, #0d0e1a) !important;
}

/* Dark mode — hero text */
html.dark .hero-h1 { color: #e8e8f8; }
html.dark .hero-h1 em { color: #7072a0; }
html.dark .hero-sub { color: #6060a0; }
html.dark .hero-eyebrow { color: #505278; }
html.dark .hero-eyebrow::before,
html.dark .hero-eyebrow::after { background: #252740; }

/* Dark — ai pills */
html.dark .ai-pill {
  background: rgba(255,255,255,0.04);
  border-color: #252740;
  color: #a0a2c4;
}
html.dark .ai-pill:hover { background: rgba(255,255,255,0.08); }

/* Dark — hero btn */
html.dark .btn-navy { background: #c8caec; color: #0d0e1a; }
html.dark .btn-outline-dark {
  background: rgba(255,255,255,0.04);
  border-color: #252740; color: #7072a0;
}

/* Dark — ticker */
html.dark .ticker-wrap {
  background: rgba(20,18,45,0.85);
  border-color: #252740;
}
html.dark .ticker-item { color: #505278; }
html.dark .ticker-item b { color: #a0a2c4; }
html.dark .tdot { color: #252740; }

/* Dark — sections */
html.dark .usecases-section,
html.dark .table-section { background: var(--off); }

html.dark .usecase-card,
html.dark .f3-card,
html.dark .i3-card,
html.dark .block,
html.dark .detail-card,
html.dark .shipping-card { background: var(--off2); }

html.dark .usecase-card:hover,
html.dark .f3-card:hover,
html.dark .i3-card:hover { background: #1e2038; }

html.dark .f3-tag { background: #252740; }
html.dark .features3-grid { background: #252740; border-color: #252740; }
html.dark .icon3-inner { background: #252740; border-color: #252740; }
html.dark .block.dark { background: #c8caec; }
html.dark .block.dark .block-title { color: #0d0e1a; }
html.dark .block.dark .block-body { color: #3a3c60; }

/* Dark — shadow (AI) section */
html.dark .shadow-section {
  background: var(--off) !important;
  border-color: #252740;
}
html.dark .shadow-section::before {
  background-image: radial-gradient(circle, rgba(130,100,200,0.15) 1px, transparent 1px) !important;
}
html.dark .shadow-glow {
  background: radial-gradient(ellipse, rgba(100,70,200,0.2) 0%, transparent 65%) !important;
}
html.dark .shadow-logo-pill {
  background: #1a1c30;
  border-color: #252740;
  color: #a0a2c4;
}
html.dark .shadow-logo-pill:hover { background: #252740; }
html.dark .slp-icon { background: #252740; color: #c8caec; }
html.dark .shadow-demo { background: #0d0e1a; border-color: #252740; }
html.dark .shadow-step { border-color: #252740; }
html.dark .shadow-step:first-child { border-color: #252740; }

/* Dark — compare */
html.dark .compare-img-wrap { background: #131525; }
html.dark .cs-row { border-color: #252740; color: #a0a2c4; }

/* Dark — comparison table */
html.dark .comparison-table { border-color: #252740; }
html.dark .comparison-table thead tr {
  background: linear-gradient(90deg, #1a1c30 0%, #1e2040 100%);
}
html.dark .comparison-table tbody tr { background: var(--off2); }
html.dark .comparison-table tbody tr:hover { background: #1e2038; }
html.dark .comparison-table tbody td { color: #7072a0; border-color: #252740; }
html.dark .comparison-table tbody td.check-ticnote { background: rgba(130,100,220,0.06); }
html.dark .check-yes::after { color: #a0a2c4; background: rgba(130,100,220,0.15); }
html.dark .check-no::after { color: #252740; }

/* Dark — CTA */
html.dark .cta-section {
  background: linear-gradient(170deg, #12102a 0%, #0f1022 40%, #0d0e1a 100%) !important;
}
html.dark .cta-section::before {
  background: radial-gradient(ellipse, rgba(100,70,220,0.2) 0%, transparent 65%) !important;
}
html.dark .cta-h2 { color: #e8e8f8 !important; }
html.dark .cta-h2 em { color: #505278 !important; }
html.dark .cta-sub { color: #505278 !important; }
html.dark .cta-device-img .img-placeholder { border-color: #252740; }

/* Dark — shipping */
html.dark .shipping-section { background: var(--off); border-color: #252740; }
html.dark .shipping-card { border-color: #252740; }
html.dark .shipping-card:hover { border-color: rgba(130,100,200,0.4); }
html.dark .sc-title { color: #c8caec; }
html.dark .sc-body { color: #505278; }
html.dark .sc-icon { color: #7072a0; }
html.dark .shipping-h3 { color: #c8caec; }

/* Dark — value section */
html.dark .value-img-wrap { background: #131525; box-shadow: 0 20px 80px rgba(0,0,0,0.4); }
html.dark .value-h2 { color: #e8e8f8; }
html.dark .value-body { color: #505278; }
html.dark .desc-pill { background: #1a1c30; border-color: #252740; color: #a0a2c4; }

/* Dark — free plan */
html.dark .block.free-plan {
  background: linear-gradient(135deg, #1a1c30 0%, #151828 100%);
  border-color: #252740;
}
html.dark .fpi { background: rgba(255,255,255,0.04); color: #a0a2c4; }
html.dark .fpi-val { background: #252740; color: #c8caec; }
html.dark .fpi-check { color: #7072a0; }

/* Dark — uc-title, block-title */
html.dark .uc-title, html.dark .block-title,
html.dark .i3-title, html.dark .f3-title,
html.dark .detail-title { color: #c8caec; }
html.dark .uc-body, html.dark .block-body,
html.dark .i3-body, html.dark .f3-body,
html.dark .detail-body { color: #505278; }
html.dark .uc-link, html.dark .f3-learn { color: #a0a2c4; }
html.dark .uc-icon, html.dark .i3-icon, html.dark .detail-icon { color: #7072a0; }

/* Dark — section labels & h2 */
html.dark .section-label, html.dark .value-eyebrow,
html.dark .shadow-eyebrow { color: #505278; }
html.dark .section-h2, html.dark .shadow-h2,
html.dark .shadow-question { color: #e8e8f8 !important; }
html.dark .section-h2 em, html.dark .shadow-h2 em,
html.dark .shadow-question em { color: #505278 !important; }

/* Dark — compare section */
html.dark .section-body { color: #505278; }
html.dark .compare-section { background: var(--white); }

/* Dark — borders throughout */
html.dark .icon3-section { border-color: #252740; }
html.dark .shadow-section { border-color: #252740; }

/* Dark — img placeholder */
html.dark .img-placeholder {
  background: linear-gradient(160deg, rgba(130,100,200,0.1), rgba(100,80,180,0.05));
  border-color: #252740;
}
html.dark .img-placeholder span { color: #505278; }

/* Dark — body bg */
html.dark body { background: var(--white); color: var(--black); }

/* Smooth transition for theme switch */
*, *::before, *::after {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
/* But not transforms/animations */
.reveal, .hero-device, .w-bar, .ticker-track { transition: none !important; }
.reveal { transition: opacity 0.65s ease, transform 0.65s ease !important; }