/* common.css */

/* ====== Theme ====== */
:root {
  --bg: #0b1020;
  --bg-alt: #0a1226;

  --surface: #111a33;
  --surface-2: #0f1a2d;

  --border: #24304a;
  --text: #eaf0f7;
  --text-muted: #b4c0d3;

  --accent: #2ad0c6;
  --accent-2: #0c6f6a;

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;

  --container: 1120px;
  --gutter: 20px;

  --focus: 0 0 0 4px rgba(42, 208, 198, 0.25);
}

/* ====== Base ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);

  background-color: var(--bg);

  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  height: 920px;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(1200px 720px at 70% -10%, rgba(42, 208, 198, 0.13), transparent 62%),
    radial-gradient(980px 680px at 0% 25%, rgba(12, 111, 106, 0.16), transparent 62%),
    radial-gradient(1200px 900px at 50% 115%, rgba(255, 255, 255, 0.02), transparent 55%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 50%, rgba(0, 0, 0, 0.45) 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 50%, rgba(0, 0, 0, 0.45) 72%, transparent 100%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: rgba(10, 18, 38, 0.95);
  color: var(--text);
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
}

.section {
  padding: 36px 0;
}

.section-alt {
  background: transparent;
}

/* ====== Header ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.brand-mark svg {
  width: 18px;
  height: 18px;
  fill: rgba(234, 240, 247, 0.92);
}
.brand .logo { height: 28px; width: auto; display: block; }

.brand-text {
  font-size: 16px;
}

.nav {
  display: flex;
  gap: 18px;
  color: rgba(234, 240, 247, 0.82);
  font-weight: 550;
  font-size: 14px;
}
.nav a {
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: relative;
}
.nav-mobile summary {
  list-style: none;
  cursor: pointer;
}
.nav-mobile summary::-webkit-details-marker {
  display: none;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
}
.icon-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(234, 240, 247, 0.86);
  border-radius: 2px;
}
.icon-btn span + span {
  margin-top: 4px;
}
.nav-mobile-panel {
  position: absolute;
  right: 0;
  margin-top: 10px;
  width: min(280px, 92vw);
  background: rgba(10, 18, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: grid;
  gap: 8px;
}
.nav-mobile-panel a {
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(234, 240, 247, 0.9);
}
.nav-mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ====== Buttons (modern primary + clear hover) ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    background 0.14s ease,
    border-color 0.14s ease,
    filter 0.14s ease;
  user-select: none;
}
.btn-lg {
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 15px;
}

.btn-primary {
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #2fe3c6 0%, #19c4bf 45%, #0a7680 100%);
  color: #041416;
  border-color: rgba(47, 227, 198, 0.55);
  box-shadow:
    0 18px 40px rgba(17, 186, 170, 0.24),
    0 8px 18px rgba(6, 48, 54, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
  filter: brightness(1.05) saturate(1.06);
  box-shadow:
    0 24px 50px rgba(17, 186, 170, 0.3),
    0 10px 22px rgba(6, 48, 54, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}
.btn-primary:active {
  transform: translateY(0px) scale(0.99);
  filter: brightness(0.98) saturate(0.98);
  box-shadow:
    0 14px 32px rgba(17, 186, 170, 0.2),
    0 6px 14px rgba(6, 48, 54, 0.32),
    inset 0 3px 12px rgba(3, 18, 20, 0.2);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(6, 24, 26, 0.9),
    0 0 0 4px rgba(47, 227, 198, 0.6),
    0 18px 40px rgba(17, 186, 170, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
  color: rgba(234, 240, 247, 0.92);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 12px 24px rgba(6, 48, 54, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-ghost:active {
  transform: translateY(0px);
}
.btn-ghost:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(7, 18, 22, 0.92),
    0 0 0 4px rgba(191, 224, 220, 0.55),
    0 10px 22px rgba(6, 48, 54, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 28px 0 34px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 28px;
}
.hero-copy {
  align-self: start;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 240, 247, 0.86);
  font-weight: 600;
  font-size: 13px;
}
.pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(42, 208, 198, 0.14);
}

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(36px, 5.4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.lead {
  margin: 0 0 18px;
  color: rgba(234, 240, 247, 0.78);
  font-size: 17px;
  max-width: 58ch;
}
.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-bullets {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.mini {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: rgba(234, 240, 247, 0.80);
}
.mini-icon {
  color: var(--accent);
  font-weight: 800;
}
.trust-line {
  margin-top: 14px;
  color: rgba(234, 240, 247, 0.64);
  font-size: 13px;
  max-width: 64ch;
}

.hero-visual {
  display: grid;
  gap: 10px;
  justify-items: end;
}
.hero-caption {
  color: rgba(234, 240, 247, 0.72);
  font-size: 13px;
}

/* ====== Shared utility bits used by mocks ====== */
.muted {
  color: rgba(234, 240, 247, 0.62);
}
.accent {
  color: rgba(42, 208, 198, 0.95);
  font-weight: 800;
}
.right {
  margin-left: auto;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ====== Mocks ====== */
.mock {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mock-hero {
  width: min(460px, 100%);
  padding: 16px;
}

.mock-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mock-chip {
  font-size: 12px;
  color: rgba(234, 240, 247, 0.72);
}
.mock-amount {
  font-size: 20px;
  font-weight: 800;
  color: rgba(234, 240, 247, 0.92);
  letter-spacing: -0.02em;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 10px;
}
.mock-card {
  background: rgba(10, 18, 38, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
}
.mock-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.mock-sub {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(234, 240, 247, 0.65);
}
.mock-bar {
  margin-top: 10px;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.mock-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(42, 208, 198, 0.95), rgba(12, 111, 106, 0.95));
  border-radius: 999px;
}

.mock-list {
  padding: 10px;
  display: grid;
  gap: 8px;
}
.mock-row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.6fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(10, 18, 38, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}
.mock-payee {
  color: rgba(234, 240, 247, 0.88);
  font-weight: 650;
}
.mock-cat {
  color: rgba(234, 240, 247, 0.65);
}
.mock-num {
  text-align: right;
  color: rgba(234, 240, 247, 0.78);
  font-variant-numeric: tabular-nums;
}

.mock-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 60% 40%, rgba(42, 208, 198, 0.18), transparent 40%);
  filter: blur(24px);
  pointer-events: none;
}

.mock-wide {
  width: min(560px, 100%);
  padding: 14px;
}
.mock-wide-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mock-pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(42, 208, 198, 0.10);
  border: 1px solid rgba(42, 208, 198, 0.18);
  color: rgba(234, 240, 247, 0.90);
  font-size: 12px;
  font-weight: 700;
}
.mock-pill.subtle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
  color: rgba(234, 240, 247, 0.75);
  font-weight: 650;
}
.mock-wide-body {
  padding: 12px 10px;
  display: grid;
  gap: 10px;
}
.mock-wide-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(10, 18, 38, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}
.mock-wide-row > span:first-child {
  color: rgba(234, 240, 247, 0.88);
  font-weight: 650;
}
.mock-wide-foot {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(10, 18, 38, 0.28);
  border: 1px dashed rgba(255, 255, 255, 0.10);
  font-size: 13px;
}
.pill-mini {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(234, 240, 247, 0.75);
  font-size: 12px;
  font-weight: 650;
}

/* Adjust tab mock */
.move {
  padding: 12px;
  border-radius: 16px;
  background: rgba(10, 18, 38, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
}
.move-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.move-row .pill-mini {
  margin-left: auto;
}
.move-row .right {
  margin-left: auto;
}

/* Review tab mock */
.spark {
  display: grid;
  gap: 10px;
}
.spark-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: rgba(234, 240, 247, 0.78);
}
.spark-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.spark-line i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(42, 208, 198, 0.95), rgba(12, 111, 106, 0.95));
}

/* ====== Value Strip ====== */
.value-strip {
  padding: 18px 0 44px;
}
.value-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.chip {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(234, 240, 247, 0.78);
  font-weight: 600;
  font-size: 13px;
}

/* ====== Cards / Grids ====== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}
.card h3 {
  margin: 8px 0 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.card p {
  margin: 0;
  color: rgba(234, 240, 247, 0.74);
}
.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(42, 208, 198, 0.12);
  border: 1px solid rgba(42, 208, 198, 0.18);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: rgba(234, 240, 247, 0.92);
}
.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(234, 240, 247, 0.74);
}
.list li {
  margin: 6px 0;
}

/* ====== Forms ====== */
.formGrid {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  color: rgba(234, 240, 247, 0.82);
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}
.field input::placeholder {
  color: rgba(234, 240, 247, 0.5);
}
.field input:focus-visible {
  outline: none;
  border-color: rgba(42, 208, 198, 0.45);
  box-shadow: 0 0 0 3px rgba(42, 208, 198, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.status {
  margin: 8px 0 0;
  font-size: 14px;
}
.status.ok {
  color: rgba(157, 246, 232, 0.95);
}
.status.err {
  color: rgba(255, 164, 164, 0.92);
}
.hidden {
  display: none;
}

/* ====== Tabs ====== */
.tabs {
  margin-top: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tab-labels {
  display: flex;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 38, 0.35);
}
.tab-labels label {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 650;
  font-size: 13px;
  color: rgba(234, 240, 247, 0.78);
  border: 1px solid transparent;
}
#tab-plan:checked ~ .tab-labels label[for="tab-plan"],
#tab-spend:checked ~ .tab-labels label[for="tab-spend"],
#tab-adjust:checked ~ .tab-labels label[for="tab-adjust"],
#tab-review:checked ~ .tab-labels label[for="tab-review"] {
  background: rgba(42, 208, 198, 0.12);
  border-color: rgba(42, 208, 198, 0.20);
  color: rgba(234, 240, 247, 0.92);
}

.tab-panels {
  padding: 16px;
}
.panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}
#tab-plan:checked ~ .tab-panels #panel-plan,
#tab-spend:checked ~ .tab-panels #panel-spend,
#tab-adjust:checked ~ .tab-panels #panel-adjust,
#tab-review:checked ~ .tab-panels #panel-review {
  display: grid;
}

.panel-copy h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.panel-copy p {
  margin: 0 0 12px;
  color: rgba(234, 240, 247, 0.74);
}
.bullets {
  display: grid;
  gap: 8px;
  margin: 12px 0 14px;
}
.bullet {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: rgba(234, 240, 247, 0.78);
}
.bullet span {
  color: var(--accent);
  font-weight: 900;
}

/* ====== Mini feature grid ====== */
.feature-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.mini-card {
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.mini-card h4 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.mini-card p {
  margin: 0;
  color: rgba(234, 240, 247, 0.72);
  font-size: 14px;
}

/* ====== Devices ====== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
}
.split-visual {
  display: grid;
  place-items: center;
  overflow: visible;
}
.split-visual img {
  width: 150%;
  max-width: none;
  height: auto;
  display: block;
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.platform {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(234, 240, 247, 0.80);
  font-weight: 600;
  font-size: 13px;
}

.store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.store-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}
.store-badge:hover {
  background: rgba(255, 255, 255, 0.06);
}
.store-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(42, 208, 198, 0.10);
  border: 1px solid rgba(42, 208, 198, 0.18);
}
.store-icon svg {
  width: 18px;
  height: 18px;
  fill: rgba(234, 240, 247, 0.92);
}
.store-text {
  display: grid;
  line-height: 1.05;
}
.store-top {
  font-size: 10px;
  color: rgba(234, 240, 247, 0.70);
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.store-main {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.device-stack {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.device {
  position: absolute;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.device-screen {
  padding: 14px;
}
.device-ui {
  height: 100%;
  border-radius: 18px;
  background: rgba(10, 18, 38, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  display: grid;
  gap: 10px;
}
.device-pill {
  height: 12px;
  width: 42%;
  border-radius: 999px;
  background: rgba(42, 208, 198, 0.18);
  border: 1px solid rgba(42, 208, 198, 0.16);
}
.device-line {
  height: 10px;
  width: 88%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.device-line.short {
  width: 62%;
}
.device-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.device-cards span {
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.laptop {
  width: 430px;
  height: 260px;
  transform: translate(-18px, 16px) rotate(-2deg);
}
.phone {
  width: 190px;
  height: 320px;
  transform: translate(170px, 0) rotate(4deg);
}
.tablet {
  width: 320px;
  height: 250px;
  transform: translate(40px, 120px) rotate(1deg);
}
.tablet .device-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.phone .device-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.device-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 55% 45%, rgba(42, 208, 198, 0.18), transparent 45%);
  filter: blur(28px);
  pointer-events: none;
}

/* ====== Quotes ====== */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.quote {
  margin: 0;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.quote blockquote {
  margin: 0;
  font-size: 15px;
  color: rgba(234, 240, 247, 0.86);
  letter-spacing: -0.01em;
}
.quote figcaption {
  margin-top: 12px;
  color: rgba(234, 240, 247, 0.60);
  font-size: 13px;
}

/* ====== FAQ ====== */
.faq {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.faq details {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 700;
  color: rgba(234, 240, 247, 0.90);
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "▾";
  float: right;
  color: rgba(234, 240, 247, 0.60);
}
.faq details[open] summary::after {
  content: "▴";
}
.faq-body {
  padding: 0 16px 16px;
  color: rgba(234, 240, 247, 0.74);
}

/* ====== CTA center ====== */
.cta-center {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
.fineprint {
  margin: 10px 0 0;
  color: rgba(234, 240, 247, 0.62);
  font-size: 13px;
}

/* ====== Footer ====== */
.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 18, 38, 0.30);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.6fr;
  gap: 16px;
  align-items: start;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.footer-links a {
  color: rgba(234, 240, 247, 0.74);
  padding: 8px 10px;
  border-radius: 12px;
}
.footer-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(234, 240, 247, 0.88);
}
.footer-right {
  text-align: right;
}

/* ====== Responsive ====== */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .nav-mobile {
    display: none;
  }
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    justify-items: start;
  }
  .split-visual img {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

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

  .grid-3,
  .feature-grid,
  .quotes {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-right {
    text-align: left;
  }

  .device-stack {
    min-height: 420px;
  }
  .laptop {
    width: min(430px, 92vw);
    height: 260px;
    transform: translate(0, 0) rotate(-2deg);
  }
  .phone {
    transform: translate(140px, 40px) rotate(4deg);
  }
  .tablet {
    transform: translate(20px, 170px) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
