:root {
  --charcoal: #2b2729;
  --surface: #353033;
  --elevated: #3d393c;
  --border: rgba(30, 183, 232, 0.14);
  --border-strong: rgba(30, 183, 232, 0.32);
  --cyan: #1eb7e8;
  --cyan-glow: rgba(30, 183, 232, 0.45);
  --sky: #66b1e8;
  --tan: #b89c82;
  --tan-light: #e6cbb3;
  --mint: rgba(177, 227, 172, 0.88);
  --text: rgba(255, 255, 255, 0.94);
  --text-muted: rgba(255, 255, 255, 0.68);
  --btn-text: #5c4c3e;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  --radius: 14px;
  --radius-lg: 22px;
  --font-body: "Inter", system-ui, sans-serif;
  --font-accent: "Instrument Sans", "Inter", system-ui, sans-serif;
  --max-width: 1160px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .btn:hover {
    transform: none;
  }
}

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #fff;
}

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

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.65rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text);
}

.section-header-left {
  text-align: left;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-lead {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 52ch;
}

.section-header .section-lead {
  margin-inline: auto;
  max-width: 42rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.85rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(215deg, #65adf0 0%, var(--tan-light) 100%);
  color: var(--btn-text);
  box-shadow: 0 10px 32px rgba(101, 173, 240, 0.28);
}

.btn-primary:hover {
  color: var(--btn-text);
  box-shadow: 0 14px 40px rgba(101, 173, 240, 0.38);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-sm {
  padding: 0.62rem 1.2rem;
  font-size: 0.78rem;
}

.btn-block {
  width: 100%;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(43, 39, 41, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.25rem;
}

.logo img {
  height: 46px;
  width: auto;
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

/* Hero */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(30, 183, 232, 0.24) 0 1px, transparent 1px 18px),
    radial-gradient(ellipse 60% 55% at 86% 18%, rgba(30, 183, 232, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 48% 45% at 12% 86%, rgba(230, 203, 179, 0.16) 0%, transparent 52%),
    linear-gradient(145deg, #171b1f 0%, #2b2729 54%, #171b1f 100%);
  background-size: auto, auto, auto, auto;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-accent);
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  max-width: 780px;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 47rem;
  margin-bottom: 1.8rem;
}

.hero-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.9rem;
  max-width: 760px;
}

.hero-benefits li {
  position: relative;
  min-height: 82px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-proof {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  background:
    linear-gradient(160deg, rgba(30, 183, 232, 0.14) 0%, rgba(255, 255, 255, 0.035) 58%),
    rgba(38, 42, 46, 0.82);
  box-shadow: var(--shadow);
}

.hero-proof-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 0.8rem;
}

.hero-proof-price {
  font-family: var(--font-accent);
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-proof-price span {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
}

.hero-proof-copy {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.hero-proof-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-proof-row strong {
  color: #fff;
}

/* Testimonials */

.testimonials {
  padding: 5.5rem 0;
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.testimonial-card {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card .role {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: 0.04em;
}

/* Pricing */

.pricing {
  padding: 3.5rem 0 4.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.pricing-prominent {
  padding-top: 2.5rem;
}

.pricing-footnote {
  margin-top: 1.75rem;
  text-align: center;
}

.pricing-footnote a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.pricing-footnote a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--border-strong);
  background:
    linear-gradient(180deg, rgba(30, 183, 232, 0.09) 0%, transparent 38%),
    var(--elevated);
}

.pricing-card .badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.price .amount {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.price .period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.slots {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tan-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.8rem;
}

/* Shop */

.shop {
  padding: 4.5rem 0 5rem;
  border-bottom: 1px solid var(--border);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.shop-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--elevated);
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-card:hover {
  color: var(--text);
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.shop-image {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  margin-bottom: 0.9rem;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.35rem;
  flex: 1;
}

.shop-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cyan);
}

.shop-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Contact */

.contact {
  padding: 5.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.contact-desc a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.manage-link {
  display: inline-flex;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
}

.manage-link:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(30, 183, 232, 0.14);
}

.form-group textarea {
  resize: vertical;
  min-height: 118px;
}

.form-status {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2rem;
}

.form-status.success {
  color: #6ecf9a;
}

.form-status.error {
  color: #e88b8b;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer */

.site-footer {
  padding: 2.25rem 0 2.75rem;
  border-top: 1px solid var(--border);
  background: var(--charcoal);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "brand social legal"
    "copy copy copy";
  align-items: center;
  gap: 1rem 2rem;
}

.footer-brand {
  grid-area: brand;
}

.footer-brand img {
  height: 38px;
  width: auto;
  opacity: 0.92;
}

.footer-social {
  grid-area: social;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.footer-social a:hover {
  border-color: var(--cyan);
  color: #fff;
}

.footer-legal {
  grid-area: legal;
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.copyright {
  grid-area: copy;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Legal pages */

.legal-page {
  padding: calc(var(--header-height) + 3.5rem) 0 5rem;
}

.legal-content {
  max-width: 700px;
  margin-inline: auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.legal-content section {
  margin-bottom: 1.75rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 0.6rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

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

  .hero-benefits li {
    min-height: auto;
  }

  .hero-proof {
    max-width: 520px;
  }

  .section-header-left {
    text-align: center;
    margin-inline: auto;
  }

  .section-header-left .section-lead {
    margin-inline: auto;
  }

  .section-header h2,
  .contact-info h2,
  .legal-content h1 {
    font-size: 2.2rem;
  }

  .testimonial-grid,
  .pricing-grid,
  .contact-grid,
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(43, 39, 41, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.8rem 1.25rem;
    border-bottom: 1px solid var(--border);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .testimonial-grid,
  .pricing-grid,
  .contact-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "social"
      "legal"
      "copy";
    text-align: center;
  }

  .footer-brand,
  .footer-social,
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 2rem) 0 2.25rem;
  }

  .hero h1 {
    font-size: 3.35rem;
    line-height: 0.94;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-header h2,
  .contact-info h2,
  .legal-content h1 {
    font-size: 1.85rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    padding: 1.25rem;
  }

  .hero-proof-price {
    font-size: 4rem;
  }

  .hero-proof-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .pricing {
    padding: 2.75rem 0 3.25rem;
  }

  .pricing-card,
  .testimonial-card,
  .contact-form {
    border-radius: var(--radius);
    padding: 1.25rem;
  }

  .price .amount {
    font-size: 2.45rem;
  }

  .shop-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    column-gap: 0.9rem;
    align-items: center;
  }

  .shop-image {
    margin-bottom: 0;
  }
}
