:root {
  --ink: #102a43;
  --ink-deep: #071b2e;
  --paper: #f7f8f4;
  --surface: #ffffff;
  --muted: #617487;
  --line: #d8e0e8;
  --teal: #0f766e;
  --teal-soft: #d8f3ee;
  --blue: #2456a6;
  --copper: #b86b35;
  --plum-soft: #eee6ff;
  --green-soft: #dff5e8;
  --yellow-soft: #fff2bf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  background: var(--paper);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.35);
  outline-offset: 3px;
}

.shop-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.shop-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

.brand {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
}

.shop-nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.shop-nav nav a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.shop-nav .nav-access {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
}

.shop-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  height: min(760px, calc(100svh - 56px));
  background-color: var(--ink-deep);
  background-image: url("./assets/life-spider-preview.png");
  background-position: center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(5, 22, 38, 0.74);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding-top: 56px;
}

.shop-eyebrow {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.shop-hero .shop-eyebrow {
  color: #89ded4;
}

.shop-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.98;
}

.hero-lead {
  max-width: 660px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.shop-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.shop-button-primary {
  background: #fff;
  color: var(--ink-deep);
}

.shop-button-quiet {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.shop-button-dark {
  background: var(--ink);
  color: #fff;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
}

.product-band,
.process-band,
.ai-band,
.pricing-band,
.faq-band {
  padding: 90px 0;
}

.product-band {
  background: var(--surface);
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: end;
}

.product-intro h2,
.process-band h2,
.ai-band h2,
.pricing-band h2,
.faq-band h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.08;
}

.product-intro > p,
.ai-band-inner > div:last-child > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.product-preview {
  margin-top: 54px;
}

.product-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(16, 42, 67, 0.18);
}

.process-band {
  background: var(--paper);
}

.process-band h2 {
  max-width: 760px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: 48px;
}

.process-grid article {
  padding-top: 18px;
  border-top: 3px solid var(--line);
}

.process-grid article:nth-child(1) {
  border-color: var(--teal);
}

.process-grid article:nth-child(2) {
  border-color: var(--blue);
}

.process-grid article:nth-child(3) {
  border-color: var(--copper);
}

.process-grid span {
  color: var(--muted);
  font-weight: 900;
}

.process-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.25rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.ai-band {
  background: var(--ink-deep);
  color: #fff;
}

.ai-band .shop-eyebrow {
  color: #89ded4;
}

.ai-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.ai-band-inner > div:last-child > p {
  color: rgba(255, 255, 255, 0.8);
}

.ai-band-inner .ai-assurance {
  margin-top: 22px;
  padding-left: 14px;
  border-left: 3px solid #89ded4;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.pricing-band {
  background: #eef3f7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin-top: 42px;
}

.pricing-grid-single {
  grid-template-columns: minmax(0, 620px);
}

.price-card {
  display: grid;
  align-content: start;
  min-height: 480px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.price-card-featured {
  border-color: var(--teal);
  box-shadow: 0 20px 55px rgba(15, 118, 110, 0.14);
}

.price-card-featured .price-label {
  color: var(--teal);
}

.price-label {
  margin: 0;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 16px 0 4px;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.price-note {
  margin: 0;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.5;
}

.price-card .shop-button {
  align-self: end;
  margin-top: auto;
}

.price-card-featured .shop-button-primary {
  background: var(--teal);
  color: #fff;
}

.checkout-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--copper);
  font-weight: 800;
}

.faq-band {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  max-width: 66ch;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.shop-footer {
  padding: 28px 0;
  background: var(--ink-deep);
  color: #fff;
}

.shop-footer .shop-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.shop-footer div div {
  display: flex;
  gap: 20px;
}

.shop-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

@media (max-width: 900px) {
  .shop-hero h1 {
    font-size: 3.8rem;
  }

  .product-intro,
  .ai-band-inner,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-grid {
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .shop-container,
  .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .shop-nav {
    height: 66px;
    padding: 0 14px;
  }

  .shop-nav nav {
    gap: 10px;
  }

  .shop-nav nav > a:not(.nav-access) {
    display: none;
  }

  .shop-hero {
    min-height: 640px;
    height: calc(100svh - 30px);
    background-position: 58% center;
  }

  .hero-inner {
    padding-top: 52px;
  }

  .shop-hero h1 {
    font-size: 3.15rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

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

  .product-band,
  .process-band,
  .ai-band,
  .pricing-band,
  .faq-band {
    padding: 62px 0;
  }

  .product-intro h2,
  .process-band h2,
  .ai-band h2,
  .pricing-band h2,
  .faq-band h2 {
    font-size: 2rem;
  }

  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .product-preview {
    width: 100%;
    margin-top: 38px;
  }

  .product-preview img {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .price-card {
    min-height: 0;
    padding: 24px;
  }

  .shop-footer .shop-container {
    align-items: flex-start;
  }
}
