@font-face {
  font-family: "Cubano";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/cubano.woff") format("woff");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/nunito-1.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/nunito-2.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("assets/fonts/nunito-3.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --ink: #25342e;
  --paper: #fbfff5;
  --mint: #cce6ce;
  --mint-deep: #97d8ad;
  --teal: #6f9b75;
  --purple: #273630;
  --gold: #e4aa19;
  --coral: #f24e38;
  --cream: #fff9df;
  --white: #ffffff;
  --line: #24342e;
  --muted: rgba(37, 52, 46, 0.72);
  --shadow-hard: 8px 8px 0 rgba(37, 52, 46, 0.28);
  --shadow-soft: 0 24px 70px rgba(37, 52, 46, 0.16);
  --radius: 8px;
  --display: "Cubano", Impact, Haettenschweiler, "Arial Black", sans-serif;
  --body: "Nunito", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --step-0: 1.08rem;
  --step-1: 1.3rem;
  --step-2: 2rem;
  --step-3: 4.1rem;
  --step-4: 5.2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(204, 230, 206, 0.72), transparent 24rem),
    radial-gradient(circle at 85% 4%, rgba(151, 216, 173, 0.28), transparent 26rem),
    linear-gradient(135deg, #fbfff5 0%, #eff9ef 42%, #fffaf0 100%);
  font-family: var(--body);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(37, 52, 46, 0.14) 1px, transparent 1.5px),
    linear-gradient(90deg, rgba(37, 52, 46, 0.055) 1px, transparent 1px);
  background-size: 13px 13px, 76px 76px;
  mix-blend-mode: multiply;
}

body::after {
  position: fixed;
  inset: auto -12rem -18rem auto;
  z-index: -1;
  width: 42rem;
  height: 42rem;
  pointer-events: none;
  content: "";
  background: conic-gradient(from 120deg, rgba(204, 230, 206, 0.42), rgba(39, 54, 48, 0.18), rgba(228, 170, 25, 0.22), rgba(204, 230, 206, 0.42));
  filter: blur(60px);
  opacity: 0.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  max-width: min(11ch, 100%);
  margin-bottom: 1rem;
  font-size: var(--step-4);
}

h2 {
  max-width: min(12ch, 100%);
  margin-bottom: 1rem;
  font-size: var(--step-3);
}

h3 {
  margin-bottom: 0.4rem;
  font-size: var(--step-2);
}

p {
  line-height: 1.62;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), 1480px);
  min-height: 74px;
  margin: 1rem auto 0;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid rgba(37, 52, 46, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(37, 52, 46, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-media {
  display: grid;
  place-items: center;
  width: clamp(4.2rem, 11vw, 8.25rem);
  min-width: 4.2rem;
}

.brand-media img,
.hero-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-text {
  max-width: 12rem;
  font-size: 0.82rem;
  line-height: 1.08;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 2rem);
  color: rgba(37, 52, 46, 0.86);
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-nav a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--purple);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.6rem;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 rgba(37, 52, 46, 0.18);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 0.28rem 0;
  background: var(--ink);
}

.section-panel {
  position: relative;
  width: min(calc(100% - 2rem), 1480px);
  margin: 0 auto;
  padding: clamp(2.75rem, 5vw, 4.75rem) clamp(1rem, 4vw, 3rem);
}

.hero {
  width: 100%;
  min-height: auto;
  padding-top: clamp(1.25rem, 3vw, 2.4rem);
  padding-bottom: clamp(1.1rem, 2.4vw, 2rem);
  isolation: isolate;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.88;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 34%, rgba(204, 230, 206, 0.46), transparent 23rem),
    radial-gradient(circle at 85% 54%, rgba(228, 170, 25, 0.2), transparent 20rem),
    radial-gradient(circle at 64% 18%, rgba(151, 216, 173, 0.28), transparent 19rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 1fr);
  gap: clamp(1.25rem, 3vw, 3.5rem);
  align-items: center;
  width: min(100%, 1480px);
  min-height: min(610px, calc(100svh - 210px));
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: min(14.5ch, 100%);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: #2f633c;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-logo {
  width: min(15rem, 82vw);
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
}

.hero-lede {
  max-width: 44rem;
  color: var(--muted);
  font-size: var(--step-1);
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.2rem;
  padding: 0.86rem 1.15rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 rgba(37, 52, 46, 0.18);
  cursor: pointer;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(37, 52, 46, 0.24);
}

.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.menu-toggle:focus-visible {
  outline: 4px solid rgba(204, 230, 206, 0.85);
  outline-offset: 3px;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #5f7f65);
  border-color: transparent;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.58);
}

.button img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  transform: rotate(-8deg);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.hero-showcase {
  position: relative;
  isolation: isolate;
  min-height: clamp(27rem, 48vw, 40rem);
  perspective: 1200px;
}

.orbit-ring {
  position: absolute;
  z-index: 0;
  border: 2.4rem solid transparent;
  border-radius: 50%;
  filter: drop-shadow(0 24px 36px rgba(37, 52, 46, 0.14));
}

.ring-one {
  inset: 5% 4% 13% 11%;
  border-top-color: rgba(151, 216, 173, 0.78);
  border-right-color: rgba(39, 54, 48, 0.74);
  transform: rotate(-22deg);
  animation: slowSpin 18s linear infinite;
}

.ring-two {
  inset: 22% 0 0 26%;
  border-bottom-color: rgba(228, 170, 25, 0.74);
  border-left-color: rgba(204, 230, 206, 0.72);
  transform: rotate(28deg);
  animation: slowSpin 24s linear reverse infinite;
}

.floating-board {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.6rem;
  width: clamp(12.5rem, 22vw, 19rem);
  min-height: 14rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid rgba(37, 52, 46, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
  will-change: transform;
}

.floating-board::before {
  position: absolute;
  inset: 0.75rem;
  z-index: -1;
  content: "";
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(204, 230, 206, 0.28), transparent 50%),
    radial-gradient(circle at 82% 15%, rgba(39, 54, 48, 0.12), transparent 26%);
  transform: translateZ(-32px);
}

.floating-board strong {
  font-family: var(--display);
  font-size: 2.75rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.floating-board p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.board-kicker {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.board-main {
  top: 12%;
  left: 22%;
  transform: rotate(-5deg) rotateY(-9deg);
}

.board-side {
  right: 6%;
  top: 31%;
  transform: rotate(7deg) rotateY(12deg);
}

.board-gold {
  left: 45%;
  bottom: 11%;
  min-height: 10rem;
  background: linear-gradient(135deg, #fff7d1, #ffffff);
  transform: rotate(-7deg) rotateY(-10deg);
}

.cube {
  position: absolute;
  z-index: 1;
  width: clamp(3.2rem, 7vw, 5.2rem);
  aspect-ratio: 1;
  pointer-events: none;
  border: 2px solid rgba(37, 52, 46, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 26px 44px rgba(37, 52, 46, 0.18);
  transform: rotateX(58deg) rotateZ(42deg);
  animation: floaty 5.5s ease-in-out infinite;
}

.cube-teal {
  top: 6%;
  left: 14%;
  background: linear-gradient(135deg, #cce6ce, #6f9b75);
}

.cube-purple {
  top: 12%;
  right: 4%;
  background: linear-gradient(135deg, #5f7f65, #273630);
  animation-delay: -1.5s;
}

.cube-gold {
  right: 11%;
  bottom: 1%;
  background: linear-gradient(135deg, #ffd86b, #d99600);
  animation-delay: -2.5s;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100% - 2rem), 1180px);
  margin: clamp(1rem, 2.8vw, 2rem) auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid rgba(37, 52, 46, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 18px 56px rgba(37, 52, 46, 0.1);
  backdrop-filter: blur(14px);
}

.proof-strip div {
  padding: clamp(1rem, 2vw, 1.4rem);
  border-right: 1px solid rgba(37, 52, 46, 0.16);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--display);
  font-size: 1.55rem;
  text-transform: uppercase;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 850;
}

.section-heading {
  max-width: 48rem;
}

.section-heading.centered {
  margin: 0 auto clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.section-heading.centered h2 {
  margin-inline: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: stretch;
}

.about {
  padding-top: clamp(2.5rem, 4.5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
}

.about-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.about-card p {
  color: var(--muted);
  font-size: var(--step-0);
  font-weight: 800;
}

.about-card .about-lede {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ethos-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-content: center;
}

.ethos-stack span {
  display: grid;
  min-height: clamp(5rem, 10vw, 8rem);
  place-items: center;
  padding: 1rem;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 rgba(37, 52, 46, 0.2);
  font-family: var(--display);
  font-size: 1.72rem;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(var(--tilt, -1deg));
}

.ethos-stack span:nth-child(2) {
  --tilt: 1.2deg;
  background: #e4fbff;
}

.ethos-stack span:nth-child(3) {
  --tilt: -1.8deg;
  background: #f4e9ff;
}

.ethos-stack span:nth-child(4) {
  --tilt: 1.8deg;
  background: #fff1bb;
}

.ethos-stack span:nth-child(5) {
  grid-column: 1 / -1;
  --tilt: -0.4deg;
  min-height: 5.5rem;
}

.why-subscription {
  padding-top: 0;
  padding-bottom: clamp(1.5rem, 3.2vw, 2.75rem);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(22rem, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
}

.why-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(135deg, rgba(255, 253, 240, 0.92), rgba(255, 255, 255, 0.88));
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

.why-card p {
  color: var(--muted);
  font-size: var(--step-0);
  font-weight: 800;
}

.why-card p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 950;
}

.pricing {
  padding-top: clamp(1.5rem, 3.2vw, 2.75rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.15rem, 3vw, 1.8rem);
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(37, 52, 46, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.price-card:hover {
  border-color: rgba(39, 54, 48, 0.42);
  box-shadow: 0 30px 80px rgba(37, 52, 46, 0.2);
}

.price-card.featured {
  border-color: rgba(39, 54, 48, 0.55);
  box-shadow: 0 30px 82px rgba(39, 54, 48, 0.16);
}

.badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  padding: 0.34rem 0.7rem;
  color: var(--white);
  background: var(--purple);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.tier-top {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.tier-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 4.1rem;
  aspect-ratio: 1;
  color: var(--white);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.4rem;
  box-shadow: inset -10px -12px 0 rgba(0, 0, 0, 0.08);
}

.tier-icon.teal {
  background: linear-gradient(135deg, #9bcfa2, #4f805a);
}

.tier-icon.purple {
  background: linear-gradient(135deg, #5f7f65, var(--purple));
}

.tier-icon.gold {
  background: linear-gradient(135deg, #ffd96c, #c48700);
}

.tier-top p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 950;
}

.tier-copy {
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.8rem;
  color: rgba(37, 52, 46, 0.88);
  font-weight: 850;
  line-height: 1.4;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.05rem;
  height: 1.05rem;
  color: var(--white);
  content: "";
  background: var(--teal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.32rem var(--teal);
}

.price-card li::after {
  position: absolute;
  left: 0.34rem;
  top: 0.36rem;
  width: 0.42rem;
  height: 0.22rem;
  content: "";
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

.featured li::before {
  background: var(--purple);
  box-shadow: inset 0 0 0 0.32rem var(--purple);
}

.card-button {
  width: 100%;
  margin-top: auto;
}

.featured-marquee {
  position: relative;
  max-width: 70rem;
  margin: clamp(1.6rem, 4vw, 2.5rem) auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(37, 52, 46, 0.16);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 rgba(37, 52, 46, 0.14);
}

.marquee-label {
  margin: 0;
  padding: 0.8rem 1rem 0;
  color: #2f633c;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.featured-marquee::before,
.featured-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(2rem, 7vw, 7rem);
  pointer-events: none;
  content: "";
}

.featured-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), transparent);
}

.featured-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.95), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: max-content;
  padding: 0.75rem 1rem 1rem;
  animation: logoScroll 28s linear infinite;
}

.featured-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.feature-tile {
  display: flex;
  flex: 0 0 auto;
  width: clamp(14.5rem, 25vw, 19rem);
  min-height: 6.4rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem 1.25rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 rgba(37, 52, 46, 0.14);
  text-decoration: none;
}

.feature-tile img {
  display: block;
  width: min(100%, 15.5rem);
  height: 4.25rem;
  object-fit: contain;
  object-position: center;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.bubble-card {
  position: relative;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: #fffdf0;
  border: 3px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-hard);
}

.bubble-card::after {
  position: absolute;
  left: 2.2rem;
  bottom: -1.2rem;
  width: 2.2rem;
  height: 2.2rem;
  content: "";
  background: #fffdf0;
  border-right: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
  transform: rotate(38deg);
}

.bubble-card p {
  margin-bottom: 1rem;
  font-size: var(--step-0);
  font-weight: 850;
}

.bubble-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 950;
}

.faq {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(24rem, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 7.5rem;
}

.faq-intro p {
  max-width: 34rem;
  color: var(--muted);
  font-size: var(--step-0);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 rgba(37, 52, 46, 0.16);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 rgba(37, 52, 46, 0.2);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding: 1rem 3.2rem 1rem 1rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1;
  list-style: none;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  content: "+";
  background: var(--mint);
  border: 2px solid var(--line);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1.2rem;
  color: var(--muted);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(22rem, 0.72fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
}

.contact-copy p {
  max-width: 42rem;
  color: var(--muted);
  font-size: var(--step-0);
  font-weight: 800;
}

.social-links a {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  padding: 0.58rem 0.85rem;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 rgba(37, 52, 46, 0.16);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.6rem);
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}

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

.float-field {
  position: relative;
  display: block;
}

.float-field input,
.float-field textarea {
  width: 100%;
  min-height: 3.45rem;
  padding: 1.2rem 0.9rem 0.52rem;
  color: var(--ink);
  background: #fbfff5;
  border: 2px solid rgba(37, 52, 46, 0.24);
  border-radius: var(--radius);
  outline: 0;
}

.float-field textarea {
  min-height: 10rem;
  resize: vertical;
}

.float-field span {
  position: absolute;
  top: 1rem;
  left: 0.9rem;
  color: rgba(37, 52, 46, 0.58);
  font-size: 0.95rem;
  font-weight: 900;
  pointer-events: none;
  text-transform: uppercase;
  transition: transform 160ms ease, color 160ms ease, font-size 160ms ease;
}

.float-field input:focus + span,
.float-field input:not(:placeholder-shown) + span,
.float-field textarea:focus + span,
.float-field textarea:not(:placeholder-shown) + span {
  color: var(--purple);
  font-size: 0.72rem;
  transform: translateY(-0.68rem);
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 1.4rem;
  margin-bottom: 0;
  color: #2f633c;
  font-weight: 950;
}

.form-status a {
  color: var(--purple);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto;
  gap: 1.2rem;
  align-items: start;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: #fafff4;
  background: var(--ink);
  border-top: 3px solid rgba(0, 0, 0, 0.1);
}

.site-footer p {
  margin: 0.4rem 0 0;
  color: rgba(250, 255, 244, 0.78);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(250, 255, 244, 0.58);
  font-weight: 850;
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 50%;
  box-shadow: 5px 5px 0 rgba(37, 52, 46, 0.2);
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(0.75rem);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 180ms ease, background 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--mint);
  box-shadow: 8px 8px 0 rgba(37, 52, 46, 0.24);
  transform: translate(-2px, -2px);
}

.back-to-top svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -1rem;
  }
}

@keyframes slowSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes logoScroll {
  to {
    transform: translateX(calc(-50% - 0.45rem));
  }
}

@media (max-width: 1100px) {
  :root {
    --step-2: 1.8rem;
    --step-3: 3.45rem;
    --step-4: 5rem;
  }

  .hero-layout,
  .about-grid,
  .why-layout,
  .contact,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .hero-showcase {
    min-height: 34rem;
  }

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

  .price-card {
    max-width: 42rem;
    width: 100%;
    margin-inline: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  :root {
    --step-0: 1rem;
    --step-1: 1.12rem;
    --step-2: 1.55rem;
    --step-3: 2.8rem;
    --step-4: 3.45rem;
  }

  #hero-canvas {
    display: none;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.65rem;
  }

  .brand-media {
    width: 5rem;
  }

  .brand-text {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding-top: 0.65rem;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    display: grid;
    min-height: 2.5rem;
    place-items: center;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(37, 52, 46, 0.16);
    border-radius: var(--radius);
  }

  .section-panel {
    width: min(calc(100% - 1rem), 1480px);
    padding-inline: 1rem;
    padding-block: 2.35rem;
  }

  .hero {
    min-height: auto;
    padding-top: 0.85rem;
    padding-bottom: 0.35rem;
  }

  .about {
    padding-top: 2.25rem;
    padding-bottom: 1.45rem;
  }

  .why-subscription {
    padding-top: 0;
    padding-bottom: 1.35rem;
  }

  .pricing {
    padding-top: 1.35rem;
  }

  h1,
  h2 {
    max-width: 100%;
  }

  .eyebrow {
    max-width: 100%;
    line-height: 1.25;
  }

  .hero-logo {
    width: min(18rem, 92vw);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-showcase {
    display: none;
  }

  .board-main {
    left: 2%;
    top: 9%;
  }

  .board-side {
    right: 2%;
    top: 39%;
  }

  .board-gold {
    left: 17%;
    bottom: 4%;
  }

  .proof-strip {
    width: min(calc(100% - 1rem), 1180px);
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(37, 52, 46, 0.16);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .ethos-stack {
    grid-template-columns: 1fr;
  }

  .featured-marquee {
    margin-inline: -0.25rem;
  }

  .marquee-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    animation: none;
  }

  .featured-marquee::before,
  .featured-marquee::after {
    display: none;
  }

  .feature-tile[aria-hidden="true"] {
    display: none;
  }

  .feature-tile {
    width: 100%;
    min-height: 6rem;
  }

  .feature-tile img {
    height: 3.85rem;
  }

  .faq-item summary {
    padding-right: 2.85rem;
  }
}

@media (max-width: 420px) {
  :root {
    --step-4: 3.1rem;
  }

  .floating-board strong {
    font-size: 2.1rem;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }

  #hero-canvas {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
