:root {
  --bg: #fbf7ef;
  --bg-soft: #f2e8da;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --text: #231f1a;
  --muted: #6f665c;
  --line: rgba(35, 31, 26, 0.12);
  --primary: #315f55;
  --primary-dark: #24483f;
  --accent: #d6a76c;
  --accent-soft: #ead6ba;
  --shadow: 0 24px 70px rgba(61, 48, 34, 0.13);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214, 167, 108, 0.25), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(49, 95, 85, 0.16), transparent 26rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.site-shell {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(61, 48, 34, 0.08);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 50px rgba(61, 48, 34, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fffdf8;
  background: var(--primary);
  box-shadow: inset 0 -6px 12px rgba(0, 0, 0, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: var(--bg-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-soft);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.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;
}

.section-pad {
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-text,
.section-heading p,
.story-panel p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-text {
  max-width: 630px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.form-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fffdf8;
  background: var(--primary);
  box-shadow: 0 14px 28px rgba(49, 95, 85, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
  box-shadow: 0 18px 38px rgba(49, 95, 85, 0.28);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.hero-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.95), rgba(242, 232, 218, 0.72)),
    radial-gradient(circle at 50% 18%, rgba(49, 95, 85, 0.16), transparent 22rem);
  box-shadow: var(--shadow);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  width: 180px;
  height: 180px;
  top: 58px;
  right: 52px;
  background: rgba(214, 167, 108, 0.34);
}

.orb-two {
  width: 270px;
  height: 270px;
  left: -62px;
  bottom: 74px;
  background: rgba(49, 95, 85, 0.14);
}

.swing-illustration {
  position: absolute;
  inset: 70px 52px 128px;
  border-radius: 34px;
  background:
    linear-gradient(to bottom, rgba(35, 31, 26, 0.12), transparent 1px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent),
    rgba(255, 253, 248, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.rope {
  position: absolute;
  top: 0;
  width: 2px;
  height: 300px;
  background: linear-gradient(var(--primary), rgba(49, 95, 85, 0.18));
  transform-origin: top;
}

.rope-left {
  left: 38%;
  transform: rotate(5deg);
}

.rope-right {
  right: 38%;
  transform: rotate(-5deg);
}

.seat {
  position: absolute;
  left: 50%;
  bottom: 82px;
  width: 190px;
  height: 88px;
  transform: translateX(-50%) rotate(-2deg);
  border-radius: 44px 44px 28px 28px;
  background: linear-gradient(150deg, var(--primary), #4f8075);
  box-shadow: 0 28px 40px rgba(49, 95, 85, 0.22);
}

.seat::before {
  content: "";
  position: absolute;
  inset: 14px 24px auto;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(16px);
}

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

.status-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(214, 167, 108, 0.2);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: 0 18px 60px rgba(61, 48, 34, 0.08);
}

.trust-strip div {
  padding: 24px;
  background: rgba(255, 253, 248, 0.74);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.96rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.approach-grid {
  display: grid;
  gap: 16px;
}

.info-card,
.product-card,
.story-panel,
.quote-card,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 58px rgba(61, 48, 34, 0.08);
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.info-card h3,
.info-card p {
  grid-column: 2;
}

.info-card p,
.product-card p,
.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-number {
  grid-row: span 2;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.products-section {
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.product-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 19px;
  color: var(--primary);
  background: var(--accent-soft);
  font-size: 1.8rem;
  font-weight: 800;
}

.product-card span {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(49, 95, 85, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.story-panel,
.quote-card,
.contact-card {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 52px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: inset 0 0 0 4px rgba(255, 253, 248, 0.88);
}

.quote-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(214, 167, 108, 0.34), transparent 20rem),
    var(--primary);
  color: #fffdf8;
}

.quote-card blockquote {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.quote-card span {
  color: rgba(255, 253, 248, 0.72);
  font-weight: 700;
}

.roadmap-section {
  padding-top: 52px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.72);
  overflow: hidden;
}

.timeline-item {
  position: relative;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item span {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: rgba(35, 31, 26, 0.2);
}

.timeline-item.active span {
  background: var(--primary);
  box-shadow: 0 0 0 9px rgba(49, 95, 85, 0.1);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 42px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(214, 167, 108, 0.22), transparent 26rem),
    rgba(255, 253, 248, 0.84);
}

.signup-form {
  display: grid;
  gap: 10px;
}

.signup-form label {
  font-size: 0.9rem;
  font-weight: 800;
}

.form-row {
  align-items: stretch;
}

input[type="email"] {
  min-width: min(100%, 260px);
  flex: 1 1 240px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--text);
  background: #fffdf8;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

input[type="email"]:focus {
  border-color: rgba(49, 95, 85, 0.55);
  box-shadow: 0 0 0 5px rgba(49, 95, 85, 0.12);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--primary);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
}

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

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

.delay-1 {
  transition-delay: 110ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@media (max-width: 920px) {
  .site-shell {
    width: min(100% - 24px, var(--max-width));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero,
  .split-section,
  .story-section,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    min-height: auto;
    padding-top: 88px;
  }

  .hero-card {
    min-height: 500px;
  }

  .trust-strip,
  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .trust-strip div {
    border-right: 0;
  }

  .timeline-item {
    border-bottom: 1px solid var(--line);
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

  .section-heading.centered {
    text-align: left;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px;
    margin-top: 8px;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4rem);
  }

  .hero-card {
    min-height: 440px;
  }

  .swing-illustration {
    inset: 42px 22px 124px;
  }

  .hero-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .story-panel,
  .quote-card,
  .contact-card {
    padding: 26px;
    border-radius: 26px;
  }

  .button,
  .form-row .button {
    width: 100%;
  }

  input[type="email"] {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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