@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #04070e;
  --bg-soft: #0a1021;
  --surface: #0f1729;
  --surface-2: #151f36;
  --text: #ecf2ff;
  --muted: #adb8d3;
  --line: rgba(177, 198, 255, 0.2);
  --brand: #2ec5ff;
  --brand-2: #39f190;
  --accent: #ffe082;
  --ok: #4ade80;
  --warn: #fb7185;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(1000px 500px at 14% -8%, rgba(46, 197, 255, 0.22), transparent 68%),
    radial-gradient(850px 400px at 88% 0%, rgba(57, 241, 144, 0.17), transparent 70%),
    linear-gradient(168deg, var(--bg) 0%, var(--bg-soft) 48%, #080d1a 100%);
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.page-top {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: 1rem;
  margin-bottom: 2.2rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(11, 18, 33, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.brand strong {
  font-family: "Sora", "Avenir Next", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: inline-flex;
  gap: 0.2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
  padding: 0.52rem 0.84rem;
  border-radius: 999px;
  transition: background-color 0.24s ease, color 0.24s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(46, 197, 255, 0.15);
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 4.4rem);
  background:
    radial-gradient(200px 140px at 88% 18%, rgba(255, 224, 130, 0.2), transparent),
    linear-gradient(145deg, rgba(21, 31, 54, 0.95), rgba(13, 18, 34, 0.9));
  box-shadow: var(--shadow);
}

.pill {
  display: inline-block;
  font-weight: 800;
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 224, 130, 0.12);
  border: 1px solid rgba(255, 224, 130, 0.24);
  border-radius: 999px;
  padding: 0.3rem 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  line-height: 1.14;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.1rem, 5vw, 3.65rem);
  max-width: 18ch;
}

.hero p {
  margin: 1rem 0 0;
  max-width: 58ch;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: center;
}

.hero-panel {
  border: 1px solid rgba(46, 197, 255, 0.35);
  border-radius: 14px;
  padding: 1rem;
  background:
    radial-gradient(140px 90px at 85% 0%, rgba(57, 241, 144, 0.2), transparent),
    linear-gradient(145deg, rgba(8, 20, 35, 0.98), rgba(7, 14, 26, 0.95));
}

.panel-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 800;
  color: #8ce7ff;
}

.plate-sample {
  margin-top: 0.65rem;
  width: fit-content;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  background: #f7f7f8;
  color: #0b1624;
  padding: 0.45rem 0.8rem;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.panel-list {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
}

.panel-list li {
  color: var(--muted);
  margin-top: 0.35rem;
}

.wordmark {
  width: min(250px, 68vw);
  height: auto;
  opacity: 0.96;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #041726;
  background: linear-gradient(95deg, var(--brand), var(--brand-2));
  box-shadow: 0 11px 25px rgba(46, 197, 255, 0.25);
}

.button.ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(165, 185, 226, 0.08);
}

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

.section {
  margin-top: 2rem;
}

.section-title {
  font-size: clamp(1.25rem, 2.7vw, 1.7rem);
  margin-bottom: 0.95rem;
}

.trust-strip {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(10, 16, 32, 0.82), rgba(7, 13, 26, 0.92));
}

.trust-item {
  padding: 1rem 1.2rem;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 800;
}

.trust-item h3 {
  margin-top: 0.35rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.feature-showcase {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "spot methods"
    "maker methods";
}

.feature-spotlight,
.method-board,
.maker-note {
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
}

.feature-spotlight {
  grid-area: spot;
  border-radius: 12px 28px 12px 28px;
  background:
    radial-gradient(180px 80px at 82% 12%, rgba(46, 197, 255, 0.22), transparent),
    linear-gradient(155deg, rgba(13, 25, 44, 0.95), rgba(9, 16, 30, 0.9));
}

.method-board {
  grid-area: methods;
  border-radius: 20px 10px 20px 10px;
  background:
    radial-gradient(150px 100px at 20% 20%, rgba(57, 241, 144, 0.16), transparent),
    linear-gradient(145deg, rgba(18, 31, 28, 0.58), rgba(8, 16, 30, 0.94));
}

.maker-note {
  grid-area: maker;
  border-radius: 10px;
  border-left: 3px solid rgba(255, 224, 130, 0.62);
  background: rgba(10, 16, 29, 0.9);
}

.feature-kicker {
  margin: 0.3rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: #8ce7ff;
  font-weight: 800;
}

.feature-showcase h3 {
  font-size: clamp(1.08rem, 2.2vw, 1.3rem);
}

.feature-showcase p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.signal-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.signal-row span,
.method-chips span {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.58rem;
}

.signal-row span {
  background: rgba(46, 197, 255, 0.16);
  border: 1px solid rgba(46, 197, 255, 0.35);
  color: #9feeff;
}

.method-chips {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.method-chips span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(173, 184, 211, 0.3);
  color: #d7e0f5;
}

.plan-tiles {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-tile {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  background: rgba(13, 22, 39, 0.82);
}

.plan-tile.plus {
  border-color: rgba(46, 197, 255, 0.4);
  background: linear-gradient(145deg, rgba(22, 50, 65, 0.74), rgba(10, 20, 36, 0.88));
}

.plan-tile.pro {
  border-color: rgba(57, 241, 144, 0.4);
  background: linear-gradient(145deg, rgba(18, 45, 36, 0.78), rgba(9, 18, 29, 0.9));
}

.tile-name {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b6c2de;
}

.tile-price {
  margin: 0.25rem 0 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
}

.tile-meta {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.plan-compare-wrap {
  margin-top: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(8, 14, 28, 0.86);
}

.plan-compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.plan-compare th,
.plan-compare td {
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid rgba(177, 198, 255, 0.12);
}

.plan-compare thead th {
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  background: linear-gradient(130deg, rgba(57, 241, 144, 0.14), rgba(46, 197, 255, 0.11));
}

.plan-compare tbody tr:nth-child(even) td {
  background: rgba(136, 164, 234, 0.045);
}

.plan-compare td:first-child {
  font-weight: 700;
  color: var(--text);
}

.flow-grid {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem;
  background: linear-gradient(145deg, rgba(16, 27, 47, 0.9), rgba(8, 14, 25, 0.9));
}

.process-index {
  width: fit-content;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(46, 197, 255, 0.4);
  background: rgba(46, 197, 255, 0.13);
  font-family: "Sora", "Avenir Next", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #91e8ff;
}

.flow-step h3 {
  margin-top: 0.55rem;
  font-size: 1.1rem;
}

.flow-step p {
  margin-top: 0.35rem;
}

.support-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 1fr;
}

.support-primary {
  border: 1px solid rgba(46, 197, 255, 0.4);
  border-radius: 28px 10px 28px 10px;
  padding: 1rem 1.2rem;
  background:
    radial-gradient(160px 80px at 90% 10%, rgba(46, 197, 255, 0.2), transparent),
    linear-gradient(145deg, rgba(17, 28, 51, 0.95), rgba(8, 14, 28, 0.9));
}

.support-primary h3,
.support-secondary h3 {
  font-size: 1.08rem;
}

.support-secondary {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0.5rem 0.8rem 1rem;
}

.support-secondary ol {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.support-secondary li {
  margin-top: 0.55rem;
  color: var(--muted);
}

.faq-list {
  margin-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-family: "Sora", "Avenir Next", sans-serif;
}

.faq-list p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.page {
  margin-bottom: 4rem;
}

.page header h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.policy-doc {
  margin-top: 1.2rem;
  max-width: 90ch;
}

.policy-item {
  padding: 0.35rem 0 0.35rem 1rem;
  border-left: 2px solid rgba(46, 197, 255, 0.45);
}

.policy-item + .policy-item {
  margin-top: 0.6rem;
  border-top: 1px solid rgba(177, 198, 255, 0.14);
  padding-top: 0.9rem;
}

.policy-item h2 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

footer {
  margin: 2.6rem 0 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.65s ease forwards;
}

.fade-up:nth-child(2) {
  animation-delay: 0.08s;
}

.fade-up:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 780px) {
  .page-top {
    position: static;
  }

  .nav {
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding: 1.35rem;
    border-radius: 19px;
  }

  .hero h1 {
    max-width: none;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "spot"
      "methods"
      "maker";
  }

  .plan-tiles {
    grid-template-columns: 1fr;
  }

  .plan-compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

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

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

  .policy-item {
    padding-left: 0.7rem;
  }
}
