/* CutDeck product site — getcutdeck.app */

:root {
  --bg: #0b1220;
  --bg-elevated: #121a2b;
  --ink: #eef3ff;
  --muted: #9aa8c7;
  --line: rgba(180, 210, 255, 0.14);
  --cyan: #3de7ff;
  --magenta: #d84dff;
  --accent: #5ce1ff;
  --max: 68rem;
  --font-display: "Syne", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(61, 231, 255, 0.18), transparent 55%),
    radial-gradient(900px 600px at 88% 8%, rgba(216, 77, 255, 0.16), transparent 50%),
    linear-gradient(180deg, #070b14 0%, var(--bg) 42%, #0a101c 100%);
}

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: #9bf3ff; }
img { max-width: 100%; height: auto; display: block; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 2;
  padding: 1.25rem 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
}
.nav-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 5rem);
  display: grid;
  align-items: center;
  padding: 2rem 0 4rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto auto;
  width: min(52vw, 34rem);
  height: min(52vw, 34rem);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(61, 231, 255, 0.35), transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(216, 77, 255, 0.3), transparent 50%);
  filter: blur(8px);
  animation: drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
}
.hero-copy { max-width: 36rem; }
.hero-mark {
  justify-self: center;
  width: min(100%, 22rem);
  animation: rise 1.1s ease-out both;
}
.hero-mark img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: rise 0.7s ease-out both;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  animation: rise 0.85s ease-out 0.05s both;
}
.tagline {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  color: #d7ecff;
  animation: rise 0.9s ease-out 0.12s both;
}
.lede {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
  animation: rise 0.95s ease-out 0.18s both;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  animation: rise 1s ease-out 0.24s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.15rem;
  border-radius: 0.7rem;
  border: 1px solid transparent;
  font-weight: 650;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), #8af0ff 55%, #c9a6ff);
}
.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: rgba(92, 225, 255, 0.45); color: #fff; }
.btn[aria-disabled="true"] {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}
.support-line {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  animation: rise 1.05s ease-out 0.3s both;
}

.section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
}
.section-kicker {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.section-lede {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 40rem;
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.step {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(18, 26, 43, 0.55);
}
.step-num {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.step h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.points {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 42rem;
}
.points li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.35rem;
  border-top: 1px solid var(--line);
  color: #d5def0;
}
.points li:last-child { border-bottom: 1px solid var(--line); }
.points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
}

.price-table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(18, 26, 43, 0.55);
}
.price-table th,
.price-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.price-table tr:last-child th,
.price-table tr:last-child td { border-bottom: 0; }
.price-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-table td { color: #e8eefc; }
.price-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.audience {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 800px) {
  .audience { grid-template-columns: repeat(2, 1fr); }
}
.audience article {
  padding: 1.25rem 1.35rem;
  border-left: 2px solid rgba(61, 231, 255, 0.45);
  background: rgba(18, 26, 43, 0.35);
}
.audience h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.audience p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.support-band {
  margin-top: 0;
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background:
    linear-gradient(135deg, rgba(61, 231, 255, 0.08), rgba(216, 77, 255, 0.08)),
    rgba(18, 26, 43, 0.65);
}
.support-band h2 { max-width: none; }
.support-band .cta-row { margin-top: 1.25rem; animation: none; }

.page {
  padding: 2.5rem 0 4rem;
}
.page-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}
.page-header p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}
.prose {
  margin-top: 2rem;
  max-width: 46rem;
}
.prose h2 {
  margin: 2rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.prose h3 {
  margin: 1.4rem 0 0.45rem;
  font-size: 1.05rem;
}
.prose p, .prose ul { color: #d5def0; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin: 0.35rem 0; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--ink); }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-18px, 22px, 0) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
