:root {
  --ink: #0d0b08;
  --ink-soft: #1b1711;
  --sand: #ede3d1;
  --sand-soft: #f7f2e8;
  --gold: #c9a24b;
  --gold-bright: #f1c86f;
  --muted: #8d816d;
  --card-border: rgba(201, 162, 75, 0.25);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--sand-soft);
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 162, 75, 0.22), transparent 40%),
    radial-gradient(circle at 10% 30%, rgba(237, 227, 209, 0.08), transparent 45%),
    linear-gradient(160deg, #0b0907, #14100b 45%, #090704 100%);
  min-height: 100vh;
}

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

.narrow {
  width: min(100% - 2rem, 760px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(13, 11, 8, 0.8);
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 60px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  min-height: 60px;
  padding: 0;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 34px;
  height: auto;
}

.brand-wordmark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(241, 200, 111, 0.88);
  line-height: 1;
}

.nav-links,
.nav-auth {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.3vw, 1.35rem);
}

.nav-links {
  justify-content: center;
}

.nav-auth {
  justify-content: flex-end;
}

a {
  color: var(--sand-soft);
  text-decoration: none;
}

.nav-links a,
.nav-auth a,
.link-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  padding: 0.1rem 0;
  color: var(--sand-soft);
  opacity: 0.94;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, opacity 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a::after,
.nav-auth a::after,
.link-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.95rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(241, 200, 111, 0.3), rgba(241, 200, 111, 0.95));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.nav-links a:hover,
.nav-auth a:hover,
.link-button:hover {
  color: var(--gold-bright);
  opacity: 1;
  text-shadow: 0 0 18px rgba(241, 200, 111, 0.18);
}

.nav-links a:hover::after,
.nav-auth a:hover::after,
.link-button:hover::after,
.nav-links a[aria-current="page"],
.nav-auth a[aria-current="page"] {
  opacity: 1;
}

.nav-links a:hover::after,
.nav-auth a:hover::after,
.link-button:hover::after,
.nav-links a[aria-current="page"]::after,
.nav-auth a[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-links a[aria-current="page"],
.nav-auth a[aria-current="page"] {
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(241, 200, 111, 0.14);
}

.inline-form {
  margin: 0;
  display: flex;
  align-items: center;
}

.link-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

main {
  padding-bottom: 4rem;
}

.hero-section {
  padding: 3.2rem 0 0.1rem;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0.5rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
  padding-top: 0;
}

.hero-topline {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: rgba(241, 200, 111, 0.72);
  text-shadow: 0 10px 30px rgba(201, 162, 75, 0.12);
}

.hero-topline-copy {
  display: inline-block;
  animation: heroToplineEnter 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-future {
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, rgba(241, 200, 111, 0.76), rgba(255, 233, 176, 0.98), rgba(241, 200, 111, 0.76));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(241, 200, 111, 0.14);
  animation:
    heroFutureShift 4.8s ease-in-out infinite,
    heroFutureGlow 3.2s ease-in-out infinite,
    heroFuturePulse 2.8s ease-in-out infinite;
}

.hero-future::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(241, 200, 111, 0), rgba(241, 200, 111, 0.98), rgba(241, 200, 111, 0));
  transform-origin: left center;
  animation:
    heroFutureUnderline 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both,
    heroFutureUnderlineGlow 3.2s ease-in-out infinite 900ms;
}

.hero-headline {
  position: relative;
  background: linear-gradient(115deg, rgba(247, 242, 232, 0.98), rgba(241, 200, 111, 0.96), rgba(247, 242, 232, 0.98));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 16px 34px rgba(201, 162, 75, 0.1);
  animation:
    heroHeadlineEnter 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both,
    heroHeadlineShift 10s ease-in-out infinite 900ms;
}

.eyebrow {
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-top: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.lead {
  color: rgba(247, 242, 232, 0.92);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.section-lead {
  color: rgba(247, 242, 232, 0.84);
  line-height: 1.7;
  margin: 0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-copy .hero-cta-row {
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.2s ease;
}

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

.btn-primary {
  color: #0e0b06;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  box-shadow: 0 10px 24px rgba(201, 162, 75, 0.3);
}

.hero-copy .btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-copy .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 46%, transparent 72%);
  transform: translateX(-135%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.hero-copy .btn-primary:hover {
  box-shadow:
    0 14px 32px rgba(201, 162, 75, 0.34),
    0 0 24px rgba(241, 200, 111, 0.22);
  filter: saturate(1.03);
}

.hero-copy .btn-primary:hover::before {
  transform: translateX(130%);
}

.btn-secondary {
  color: var(--sand-soft);
  border-color: rgba(241, 200, 111, 0.5);
  background: rgba(241, 200, 111, 0.08);
}

.hero-image-card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1.35rem;
  animation: heroImageFloat 9s ease-in-out infinite;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
}

@keyframes heroHeadlineEnter {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroToplineEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroHeadlineShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes heroFutureShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes heroFutureGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(241, 200, 111, 0));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(241, 200, 111, 0.24));
  }
}

@keyframes heroFuturePulse {
  0%,
  100% {
    opacity: 0.92;
  }

  50% {
    opacity: 1;
  }
}

@keyframes heroFutureUnderline {
  from {
    transform: scaleX(0);
    opacity: 0.4;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes heroFutureUnderlineGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(241, 200, 111, 0);
  }

  50% {
    box-shadow: 0 0 10px rgba(241, 200, 111, 0.26);
  }
}

@keyframes heroImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.feature-section,
.pricing-section,
.install-section,
.legal-section,
.account-section,
.auth-section,
.error-section {
  padding: 2.5rem 0 1rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.page-header {
  margin: 0 auto 1.75rem;
  text-align: center;
}

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

.benefit-grid article {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  perspective: 1200px;
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(27, 23, 17, 0.94), rgba(17, 13, 9, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 44px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease,
    opacity 0.45s ease,
    filter 0.45s ease;
}

.benefit-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(241, 200, 111, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(241, 200, 111, 0.04), transparent 55%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
  z-index: -1;
}

.benefit-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(241, 200, 111, 0.08);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.js-ready .benefit-grid article {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
}

.benefit-grid article.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: var(--feature-delay, 0ms);
}

.benefit-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 200, 111, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(30, 24, 17, 0.98), rgba(18, 14, 10, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 52px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(241, 200, 111, 0.06);
}

.benefit-grid article:hover::before,
.benefit-grid article:hover::after {
  opacity: 1;
}

.benefit-grid article p {
  position: relative;
  margin: 0;
  color: rgba(247, 242, 232, 0.84);
  line-height: 1.58;
  font-size: 0.94rem;
}

.feature-card-inner {
  position: relative;
  min-height: 100%;
}

.feature-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 100%;
}

.feature-face-back {
  text-align: center;
}

.feature-face-back .feature-title {
  display: none;
}

.feature-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 0.6rem;
  text-align: center;
}

.feature-title svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.94);
  filter: drop-shadow(0 0 10px rgba(241, 200, 111, 0.12));
  transition: transform 0.28s ease, color 0.28s ease, filter 0.28s ease;
}

.feature-title h3 {
  margin-bottom: 0;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.98);
}

.benefit-grid article:hover .feature-title svg {
  transform: translateY(-1px) scale(1.08);
  color: rgba(241, 200, 111, 0.98);
  filter: drop-shadow(0 0 14px rgba(241, 200, 111, 0.28));
}

.benefit-grid article:hover .feature-title h3 {
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .benefit-grid article {
    min-height: 10.9rem;
    padding: 0;
  }

  .feature-card-inner {
    min-height: 10.9rem;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .feature-face {
    position: absolute;
    inset: 0;
    padding: 0.86rem 0.9rem;
    backface-visibility: hidden;
  }

  .feature-face-front {
    transform: rotateY(0deg);
  }

  .feature-face-back {
    transform: rotateY(180deg);
    justify-content: center;
  }

  .feature-face-back .feature-title {
    display: flex;
  }

  .feature-face-front .feature-title {
    margin-bottom: 0;
  }

  .feature-face-back .feature-title {
    margin-bottom: 0.08rem;
  }

  .feature-face-back p {
    opacity: 0.96;
  }

  .benefit-grid article:hover {
    transform: translateY(-6px);
  }

  .benefit-grid article:hover .feature-card-inner {
    transform: rotateY(180deg);
  }

  .install-step-columns .install-step-card,
  .install-info-card-zoomable {
    position: relative;
    z-index: 0;
    transform-origin: center top;
  }

  .install-step-columns .process-card.install-step-card:hover {
    transform: translateY(-16px) scale(1.12);
    z-index: 6;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 30px 68px rgba(0, 0, 0, 0.36),
      0 0 0 1px rgba(241, 200, 111, 0.08);
  }

  .install-info-card-zoomable:hover {
    transform: translateY(-16px) scale(1.12);
    z-index: 6;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 30px 68px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(241, 200, 111, 0.08);
  }

  .install-step-columns .install-step-card:hover .install-shot img,
  .install-info-card-zoomable:hover .install-shot img {
    transform: scale(1.24);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 26px 52px rgba(0, 0, 0, 0.34);
  }
}

.feature-grid article,
.plan-card,
.video-card,
.legal-card,
.auth-card,
.error-card,
.account-grid {
  border: 1px solid var(--card-border);
  background: rgba(27, 23, 17, 0.82);
  border-radius: 16px;
}

.feature-grid article,
.plan-card,
.video-card,
.legal-card,
.auth-card,
.error-card {
  padding: 1.25rem;
}

.auth-card {
  text-align: center;
}

.btn-google {
  gap: 0.7rem;
}

.btn-google svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.legal-block + .legal-block {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 162, 75, 0.18);
}

.legal-block p {
  margin-bottom: 0;
  color: rgba(247, 242, 232, 0.84);
  line-height: 1.7;
}

.capability-section {
  padding-top: 1rem;
}

.process-section {
  padding-top: 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.capability-copy,
.capability-list,
.process-card,
.closing-panel {
  border: 1px solid var(--card-border);
  background: rgba(27, 23, 17, 0.82);
  border-radius: 16px;
}

.capability-copy,
.closing-panel {
  padding: 1.5rem;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1.25rem;
}

.capability-item {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(241, 200, 111, 0.08);
  border: 1px solid rgba(241, 200, 111, 0.12);
  color: rgba(247, 242, 232, 0.92);
}

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

.process-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(27, 23, 17, 0.94), rgba(17, 13, 9, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 44px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease,
    opacity 0.45s ease,
    filter 0.45s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(241, 200, 111, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(241, 200, 111, 0.04), transparent 55%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
  z-index: -1;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(241, 200, 111, 0.08);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.js-ready .process-card {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
}

.process-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: var(--feature-delay, 0ms);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 200, 111, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(30, 24, 17, 0.98), rgba(18, 14, 10, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 52px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(241, 200, 111, 0.06);
}

.process-card:hover::before,
.process-card:hover::after {
  opacity: 1;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  color: #0e0b06;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  box-shadow: 0 10px 24px rgba(201, 162, 75, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.process-card:hover .process-step {
  transform: translateY(-1px) scale(1.06);
  box-shadow: 0 14px 28px rgba(201, 162, 75, 0.28);
  filter: saturate(1.05);
}

.process-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.24rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
}

.process-card p {
  margin-bottom: 0;
  color: rgba(247, 242, 232, 0.84);
  line-height: 1.7;
  font-size: 0.99rem;
}

.closing-section {
  padding-bottom: 0;
}

.closing-panel {
  text-align: center;
}

.billing-toggle {
  margin: 0.7rem 0 0.75rem;
  display: inline-flex;
  position: relative;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(27, 23, 17, 0.88);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 26px rgba(0, 0, 0, 0.16);
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.pricing-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 11rem);
}

.page-title,
.pricing-title {
  margin: 0;
  padding-top: 0.5rem;
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: rgba(241, 200, 111, 0.92);
  text-align: center;
  text-shadow: 0 10px 30px rgba(201, 162, 75, 0.12);
}

.page-header .lead {
  margin: 0.85rem auto 0;
  max-width: 42rem;
}

.pricing-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.pricing-layout-wide {
  max-width: 1080px;
}

.pricing-toggle {
  margin: 0 0 1rem;
}

.plan-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.toggle-option {
  color: var(--sand-soft);
  background: transparent;
  border: 0;
  padding: 0.6rem 1rem;
  font: inherit;
  cursor: pointer;
  opacity: 0.72;
  position: relative;
  transition:
    color 0.24s ease,
    opacity 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease,
    text-shadow 0.24s ease;
}

.toggle-option.is-active {
  opacity: 1;
  background: rgba(201, 162, 75, 0.28);
  color: rgba(255, 248, 231, 0.98);
  text-shadow: 0 0 14px rgba(241, 200, 111, 0.22);
  box-shadow: inset 0 0 0 1px rgba(241, 200, 111, 0.12);
}

.toggle-option:hover {
  opacity: 1;
  color: rgba(255, 248, 231, 0.95);
}

.billing-toggle.is-switching {
  border-color: rgba(241, 200, 111, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 28px rgba(0, 0, 0, 0.2),
    0 0 18px rgba(241, 200, 111, 0.12);
  transform: translateY(-1px);
}

.plan-price {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
}

.plan-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  padding: 1rem 1rem 1.05rem;
  text-align: left;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(241, 200, 111, 0.14), transparent 38%),
    linear-gradient(160deg, rgba(241, 200, 111, 0.03), transparent 56%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
  z-index: -1;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(241, 200, 111, 0.08);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 200, 111, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(30, 24, 17, 0.96), rgba(18, 14, 10, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 52px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(241, 200, 111, 0.06);
}

.plan-card:hover::before,
.plan-card:hover::after {
  opacity: 1;
}

.plan-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.plan-card h2 {
  margin-bottom: 0.35rem;
}

.plan-subtitle {
  margin: 0;
  color: rgba(247, 242, 232, 0.78);
  line-height: 1.55;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 200, 111, 0.26);
  background: rgba(241, 200, 111, 0.1);
  color: rgba(241, 200, 111, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-price-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  transition: transform 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
}

.plan-price-stack.is-updating {
  opacity: 0.72;
  transform: translateY(4px) scale(0.985);
  filter: saturate(0.88) blur(0.3px);
}

.plan-price-compare-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-height: 1.9rem;
}

.plan-price-compare-row[hidden],
.plan-price-compare[hidden],
.plan-discount-badge[hidden],
.plan-meta[hidden],
.plan-total[hidden] {
  display: none !important;
}

.plan-price-compare {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.08rem 0.1rem;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(247, 242, 232, 0.72);
  text-shadow: 0 0 16px rgba(241, 200, 111, 0.08);
}

.plan-price-compare::after {
  content: "";
  position: absolute;
  left: -0.05rem;
  right: -0.05rem;
  top: 58%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(241, 200, 111, 0.22), rgba(241, 200, 111, 0.9), rgba(241, 200, 111, 0.22));
  box-shadow: 0 0 10px rgba(241, 200, 111, 0.18);
  transform: rotate(-3deg);
  pointer-events: none;
}

.plan-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 200, 111, 0.24);
  background: rgba(241, 200, 111, 0.12);
  color: rgba(241, 200, 111, 0.96);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.plan-price-current {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  color: var(--sand-soft);
  transition: text-shadow 0.28s ease;
}

.plan-card:hover .plan-price-current {
  text-shadow: 0 0 18px rgba(241, 200, 111, 0.08);
}

.plan-meta,
.plan-total {
  margin-top: 0.45rem;
  color: rgba(247, 242, 232, 0.88);
}

.plan-meta {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-total {
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  opacity: 0.72;
}

.plan-benefits {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(201, 162, 75, 0.16);
}

.plan-benefits-label {
  margin: 0 0 0.7rem;
  color: rgba(241, 200, 111, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-benefit-list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(247, 242, 232, 0.9);
}

.plan-benefit-list li + li {
  margin-top: 0.55rem;
}

.community-hero-panel {
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(88, 101, 242, 0.16), transparent 36%),
    linear-gradient(160deg, rgba(27, 23, 17, 0.92), rgba(17, 13, 9, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.community-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(88, 101, 242, 0.28);
  background: rgba(88, 101, 242, 0.12);
  color: rgba(239, 242, 255, 0.96);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(88, 101, 242, 0.12);
}

.community-badge svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.community-cta-row {
  justify-content: center;
  margin-top: 1.2rem;
}

.community-feature-grid article,
.community-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(27, 23, 17, 0.94), rgba(17, 13, 9, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 44px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease,
    opacity 0.45s ease,
    filter 0.45s ease;
}

.community-feature-grid article::before,
.community-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(88, 101, 242, 0.12), transparent 36%),
    radial-gradient(circle at bottom right, rgba(241, 200, 111, 0.12), transparent 30%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.community-feature-grid article::after,
.community-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(241, 200, 111, 0.08);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.js-ready .community-card-reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
}

.community-card-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: var(--feature-delay, 0ms);
}

.community-feature-grid article:hover,
.community-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 200, 111, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(30, 24, 17, 0.98), rgba(18, 14, 10, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 52px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(241, 200, 111, 0.06);
}

.community-feature-grid article:hover::before,
.community-feature-grid article:hover::after,
.community-card:hover::before,
.community-card:hover::after {
  opacity: 1;
}

.community-feature-grid article h3 {
  margin-bottom: 0.7rem;
}

.community-feature-grid article p {
  margin: 0;
  color: rgba(247, 242, 232, 0.84);
  line-height: 1.65;
}

.community-bottom-section {
  padding-top: 1rem;
}

.community-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.community-card {
  padding: 1.35rem;
}

.community-list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(247, 242, 232, 0.9);
}

.community-list li + li {
  margin-top: 0.6rem;
}

.community-faq-item + .community-faq-item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 162, 75, 0.16);
}

.community-faq-item p {
  margin: 0;
  color: rgba(247, 242, 232, 0.84);
  line-height: 1.65;
}

.contact-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.85rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(88, 101, 242, 0.16), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(241, 200, 111, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(27, 23, 17, 0.96), rgba(16, 12, 9, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 50px rgba(0, 0, 0, 0.24);
}

.contact-hero-panel::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.14), transparent 66%);
  opacity: 0.72;
  pointer-events: none;
  animation: contactGlowDrift 14s ease-in-out infinite;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 200, 111, 0.24);
  background: rgba(241, 200, 111, 0.08);
  color: rgba(252, 236, 194, 0.96);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(241, 200, 111, 0.1);
}

.contact-badge svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.contact-hero-note {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: rgba(247, 242, 232, 0.78);
  line-height: 1.65;
}

.contact-primary-section {
  padding-top: 1.1rem;
}

.contact-secondary-section {
  padding-top: 0.8rem;
}

.contact-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.4rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(27, 23, 17, 0.94), rgba(17, 13, 9, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 44px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease,
    opacity 0.45s ease,
    filter 0.45s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(88, 101, 242, 0.13), transparent 36%),
    radial-gradient(circle at bottom right, rgba(241, 200, 111, 0.12), transparent 30%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(241, 200, 111, 0.08);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 200, 111, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(31, 25, 18, 0.98), rgba(18, 14, 10, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 52px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(241, 200, 111, 0.06);
}

.contact-card:hover::before,
.contact-card:hover::after {
  opacity: 1;
}

.contact-card-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  margin-bottom: 1rem;
}

.contact-card-heading h2 {
  margin-bottom: 0;
}

.contact-card-heading > div:last-child {
  text-align: center;
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(241, 200, 111, 0.18);
  background:
    linear-gradient(160deg, rgba(241, 200, 111, 0.1), rgba(241, 200, 111, 0.03)),
    rgba(255, 255, 255, 0.02);
  color: rgba(252, 236, 194, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-card-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  flex: 0 0 auto;
}

.contact-card-icon-discord {
  border-color: rgba(88, 101, 242, 0.24);
  background:
    linear-gradient(160deg, rgba(88, 101, 242, 0.14), rgba(88, 101, 242, 0.05)),
    rgba(255, 255, 255, 0.02);
  color: rgba(239, 242, 255, 0.96);
}

.contact-card-copy {
  margin: 0 0 1.2rem;
  color: rgba(247, 242, 232, 0.86);
  line-height: 1.7;
}

.contact-email-panel {
  position: relative;
  padding: 1.15rem 1.2rem;
  margin-bottom: 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(241, 200, 111, 0.18);
  background:
    linear-gradient(135deg, rgba(241, 200, 111, 0.08), rgba(241, 200, 111, 0.015)),
    rgba(10, 8, 6, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 36px rgba(0, 0, 0, 0.16);
}

.contact-email-label {
  margin: 0 0 0.4rem;
  color: rgba(247, 242, 232, 0.66);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-email {
  margin: 0;
  color: rgba(255, 233, 181, 0.98);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  letter-spacing: 0.02em;
  word-break: break-word;
  text-shadow: 0 0 22px rgba(241, 200, 111, 0.12);
}

.contact-email-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-copy-feedback {
  min-height: 1.25rem;
  color: rgba(88, 101, 242, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-email-actions .btn,
.contact-secondary-actions .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    filter 0.22s ease;
}

.contact-email-actions .btn::before,
.contact-secondary-actions .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 46%, transparent 72%);
  transform: translateX(-135%);
  transition: transform 0.52s ease;
  z-index: -1;
}

.contact-email-actions .btn:hover,
.contact-secondary-actions .btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.contact-email-actions .btn:hover::before,
.contact-secondary-actions .btn:hover::before {
  transform: translateX(130%);
}

.contact-email-actions .btn-primary:hover {
  box-shadow:
    0 16px 34px rgba(201, 162, 75, 0.34),
    0 0 24px rgba(88, 101, 242, 0.18),
    0 0 28px rgba(241, 200, 111, 0.16);
}

.contact-secondary-actions .btn-secondary:hover {
  border-color: rgba(88, 101, 242, 0.56);
  background: rgba(88, 101, 242, 0.12);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18),
    0 0 24px rgba(88, 101, 242, 0.16);
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-card-primary .contact-trust-grid {
  grid-template-columns: repeat(2, minmax(0, 16rem));
  justify-content: center;
}

.contact-trust-item {
  padding: 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(241, 200, 111, 0.12);
  background: rgba(255, 255, 255, 0.015);
  text-align: center;
}

.contact-trust-item h3 {
  margin-bottom: 0.45rem;
  color: rgba(255, 243, 212, 0.96);
  font-size: 1rem;
}

.contact-trust-item p {
  margin: 0;
  color: rgba(247, 242, 232, 0.78);
  line-height: 1.6;
}

.contact-benefit-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
}

.contact-benefit-pills span {
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(88, 101, 242, 0.22);
  background: rgba(88, 101, 242, 0.08);
  color: rgba(239, 242, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-secondary-actions {
  justify-content: center;
  margin-top: 0;
}

@keyframes contactGlowDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(1.5rem, 1rem, 0);
    opacity: 0.95;
  }
}

.shadowed {
  text-shadow: 0 8px 24px rgba(13, 11, 8, 0.45);
}

.deemphasized {
  opacity: 0.72;
}

.struck {
  text-decoration: line-through;
}

.action-form {
  margin-top: 0.95rem;
}

.action-form .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    filter 0.22s ease;
}

.action-form .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 46%, transparent 72%);
  transform: translateX(-135%);
  transition: transform 0.52s ease;
  z-index: -1;
}

.action-form .btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.action-form .btn:hover::before {
  transform: translateX(130%);
}

.action-form .btn-primary:hover {
  box-shadow:
    0 16px 34px rgba(201, 162, 75, 0.34),
    0 0 26px rgba(241, 200, 111, 0.2);
}

.action-form .btn-secondary:hover {
  border-color: rgba(241, 200, 111, 0.72);
  background: rgba(241, 200, 111, 0.13);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18),
    0 0 22px rgba(241, 200, 111, 0.14);
}

.video-card + .video-card {
  margin-top: 1rem;
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 18rem));
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
  justify-items: center;
}

.short-card {
  width: 18rem;
  padding: 0.9rem;
}

.landing-shorts-section {
  padding-top: 0.4rem;
}

.landing-shorts-shell {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 1.2rem 1.1rem;
  border: 1px solid rgba(201, 162, 75, 0.12);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(241, 200, 111, 0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(241, 200, 111, 0.08), transparent 28%),
    linear-gradient(160deg, rgba(26, 21, 16, 0.9), rgba(15, 12, 8, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 42px rgba(0, 0, 0, 0.18);
}

.landing-shorts-carousel-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.landing-shorts-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.1rem 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.landing-shorts-track {
  display: flex;
  justify-content: flex-start;
  gap: 1.35rem;
  width: max-content;
  min-width: 0;
  padding: 0 0.1rem;
  margin: 0;
}

.landing-short {
  flex: 0 0 clamp(15rem, 22vw, 18rem);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.landing-short .video-frame {
  margin-bottom: 0;
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 75, 0.18);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(241, 200, 111, 0.08);
}

.landing-shorts-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(201, 162, 75, 0.26);
  border-radius: 999px;
  background:
    linear-gradient(160deg, rgba(241, 200, 111, 0.12), rgba(241, 200, 111, 0.04)),
    rgba(21, 16, 11, 0.92);
  color: rgba(255, 233, 181, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    opacity 0.22s ease;
}

.landing-shorts-arrow span {
  font-size: 1.65rem;
  line-height: 1;
  transform: translateY(-0.02em);
}

.landing-shorts-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(241, 200, 111, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 30px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(241, 200, 111, 0.12);
}

.landing-shorts-arrow:disabled {
  opacity: 0.34;
  cursor: default;
  box-shadow: none;
}

.landing-shorts-carousel::-webkit-scrollbar {
  display: none;
}

.video-card h2 {
  text-align: center;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 75, 0.24);
  background: #000;
  margin-bottom: 1rem;
}

.video-frame-short {
  padding-bottom: 177.78%;
  margin-bottom: 0;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.install-overview {
  padding-bottom: 0.4rem;
}

.install-page-header {
  max-width: 52rem;
}

.install-summary-grid,
.install-start-grid,
.install-support-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
}

.install-summary-card,
.install-info-card,
.install-tips-card {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: rgba(27, 23, 17, 0.82);
}

.install-summary-card,
.install-info-card {
  padding: 1.25rem;
  text-align: center;
}

.install-summary-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at top right, rgba(241, 200, 111, 0.12), transparent 36%),
    linear-gradient(160deg, rgba(27, 23, 17, 0.94), rgba(17, 13, 9, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.install-summary-card h2 {
  margin-bottom: 0.5rem;
}

.install-summary-card p:last-child,
.install-info-card p:last-child {
  margin-bottom: 0;
}

.install-summary-card-wide {
  grid-column: span 1;
}

.install-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 18rem));
  justify-content: center;
  max-width: 58rem;
}

.install-summary-label {
  margin: 0 0 0.65rem;
  color: rgba(241, 200, 111, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.install-cta-row {
  justify-content: center;
  margin-top: 1rem;
}

.install-section-accent-title {
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.install-code {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(241, 200, 111, 0.2);
  background: rgba(11, 9, 7, 0.9);
  color: rgba(255, 240, 201, 0.96);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.94rem;
  line-height: 1.6;
  text-align: center;
  overflow-wrap: anywhere;
}

.install-code-button {
  border-width: 1px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.install-code-button:hover {
  transform: translateY(-1px);
  border-color: rgba(241, 200, 111, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 24px rgba(0, 0, 0, 0.18),
    0 0 20px rgba(241, 200, 111, 0.08);
}

.install-code-button:focus-visible {
  outline: 2px solid rgba(241, 200, 111, 0.7);
  outline-offset: 3px;
}

.install-code-block {
  margin-top: 1rem;
}

.install-link-row {
  margin: 1rem 0 0;
}

.install-link-row a {
  color: var(--gold-bright);
  font-weight: 600;
}

.install-list {
  display: inline-block;
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: rgba(247, 242, 232, 0.84);
  line-height: 1.65;
  text-align: left;
}

.install-list li + li {
  margin-top: 0.45rem;
}

.install-list-action {
  list-style: none;
  margin-top: 0.6rem;
  margin-left: -1.15rem;
}

.install-list-action .install-code {
  width: auto;
  min-width: 9rem;
}

.install-shot {
  margin: 1rem 0 0;
  text-align: center;
}

.install-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(241, 200, 111, 0.2);
  background: rgba(0, 0, 0, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 14px 32px rgba(0, 0, 0, 0.22);
}

.install-step-columns .install-step-card,
.install-info-card-zoomable,
.install-step-columns .install-step-card .install-shot img,
.install-info-card-zoomable .install-shot img {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.install-shot figcaption {
  margin-top: 0.6rem;
  color: rgba(247, 242, 232, 0.68);
  font-size: 0.88rem;
  line-height: 1.5;
}

.install-mode-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.install-steps-grid {
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 22rem));
  justify-content: center;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.install-step-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(18rem, 22rem));
  justify-content: center;
  align-items: start;
  gap: 1rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.install-step-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.install-step-card {
  align-self: start;
}

.js-ready .install-step-card {
  opacity: 1;
  transform: none;
  filter: none;
}

.install-step-card-1 {
  order: 1;
}

.install-step-card-2 {
  order: 2;
}

.install-step-card-3 {
  order: 3;
}

.install-step-card-4 {
  order: 4;
}

.install-step-card-5 {
  order: 5;
}

.install-mode-card {
  min-height: 100%;
}

.install-video-frame {
  margin-top: 1.35rem;
}

.install-tips-card {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(241, 200, 111, 0.12), transparent 32%),
    linear-gradient(155deg, rgba(30, 24, 17, 0.94), rgba(17, 13, 9, 0.92));
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem;
  margin: 1rem 0;
}

.account-grid dt {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 0.2rem;
}

.account-grid dd {
  margin: 0;
}

.flash-message {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(241, 200, 111, 0.45);
  border-radius: 12px;
  background: rgba(201, 162, 75, 0.12);
}

.site-footer {
  border-top: 1px solid rgba(201, 162, 75, 0.18);
  margin-top: 2rem;
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(247, 242, 232, 0.72);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .feature-grid,
  .account-grid,
  .capability-grid,
  .process-grid,
  .plan-grid,
  .community-bottom-grid,
  .shorts-grid,
  .contact-trust-grid {
    grid-template-columns: 1fr;
  }

  .install-summary-grid,
  .install-start-grid,
  .install-support-grid,
  .install-mode-grid,
  .install-steps-grid,
  .install-step-columns {
    grid-template-columns: 1fr;
  }

  .install-step-column {
    display: contents;
  }

  .install-summary-card-wide {
    grid-column: span 1;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    min-height: auto;
    padding: 0.85rem 0;
  }

  .brand-logo {
    width: 40px;
  }

  .brand-wordmark {
    font-size: 0.96rem;
    letter-spacing: 0.14em;
  }

  .nav-links,
  .nav-auth {
    gap: 1.2rem;
  }

  .brand,
  .nav-links a,
  .nav-auth a,
  .link-button {
    min-height: 60px;
  }

  .nav-links a::after,
  .nav-auth a::after,
  .link-button::after {
    bottom: 0.9rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .hero-intro {
    margin-bottom: 0.35rem;
  }

  .hero-image-card {
    padding-top: 0.5rem;
  }

  .benefit-grid article {
    padding: 1.2rem;
  }

  .process-card {
    padding: 1.2rem;
  }

  .plan-price-compare-row {
    gap: 0.35rem;
    min-height: 1.7rem;
  }

  .plan-price-compare {
    font-size: 1.2rem;
  }

  .contact-secondary-actions {
    justify-content: center;
  }

  .landing-short {
    flex-basis: min(18rem, calc(100vw - 7.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-grid article,
  .benefit-grid article::before,
  .benefit-grid article::after,
  .feature-title svg,
  .process-card,
  .process-card::before,
  .process-card::after,
  .process-step,
  .hero-topline-copy,
  .hero-future,
  .hero-future::after,
  .hero-headline,
  .hero-image-card,
  .contact-hero-panel::before,
  .hero-copy .btn-primary,
  .hero-copy .btn-primary::before {
    transition: none;
    animation: none;
  }

  .js-ready .benefit-grid article,
  .js-ready .process-card {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 720px) {
  .landing-shorts-shell {
    padding: 1rem 0.85rem 0.9rem;
  }

  .landing-shorts-carousel-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .landing-short {
    flex-basis: min(18rem, calc(100vw - 2.8rem));
  }

  .landing-shorts-arrow {
    display: none;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem 1rem;
  }

  .brand {
    width: 100%;
    justify-content: center;
    justify-self: center;
    min-height: 56px;
  }

  .nav-links,
  .nav-auth {
    width: 100%;
    justify-content: center;
    justify-self: center;
    gap: 1rem 1.15rem;
    flex-wrap: wrap;
  }

  .nav-links a,
  .nav-auth a,
  .link-button {
    min-height: 44px;
    font-size: 0.97rem;
  }

  .nav-links a::after,
  .nav-auth a::after,
  .link-button::after {
    bottom: 0.45rem;
  }
}
