:root {
  --bg: #f7f0de;
  --bg-soft: #fffaf0;
  --surface: rgba(255, 251, 243, 0.84);
  --surface-strong: #fff6df;
  --ink: #2f261d;
  --ink-soft: #5d5247;
  --line: rgba(72, 55, 31, 0.1);
  --accent: #f29b38;
  --accent-deep: #d96b20;
  --accent-green: #7db36f;
  --accent-yellow: #f3c94f;
  --shadow: 0 22px 60px rgba(88, 57, 16, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 32px));
  --font-body: "Trebuchet MS", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(243, 201, 79, 0.24), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(125, 179, 111, 0.2), transparent 24%),
    linear-gradient(180deg, #fbf5e8 0%, #f5edd8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 65%);
  opacity: 0.35;
}

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

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.site-header,
.section,
.hero,
.intro-band {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(252, 247, 236, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 25px rgba(107, 78, 30, 0.08);
}

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

.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-yellow), #ffd895);
  box-shadow: inset 0 -4px 10px rgba(255, 255, 255, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink-soft);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 2px;
  line-height: 1;
  border-radius: 999px;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(242, 155, 56, 0.2);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--ink) !important;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent));
  box-shadow: 0 12px 24px rgba(242, 155, 56, 0.24);
}

.nav-cta::after {
  display: none;
}

.nav-contact {
  padding: 9px 14px !important;
  border: 1px solid rgba(72, 54, 24, 0.08);
  background: rgba(255, 251, 243, 0.68);
  color: var(--ink) !important;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(82, 56, 17, 0.06);
}

.nav-contact::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 44px;
  align-items: center;
  padding: 92px 0 52px;
}

.hero-copy,
.hero-visual,
.intro-band {
  animation: rise-in 700ms ease both;
}

.hero-copy {
  animation-delay: 90ms;
}

.hero-visual {
  animation-delay: 180ms;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.22, 0.7, 0.25, 1) var(--reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.22, 0.7, 0.25, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-card h2,
.event-card h2,
.host-copy h2,
.signup-callout h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 7.4vw, 6rem);
  line-height: 0.92;
}

.hero-subtitle {
  margin: 22px 0 12px;
  font-size: clamp(1.18rem, 2.8vw, 1.7rem);
  font-weight: 600;
}

.hero-text,
.about-copy p,
.soft-card p,
.timeline-item p,
.event-summary,
.host-copy p,
.faq-item p,
.signup-callout p,
.form-caption {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero-text {
  max-width: 34rem;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
  cursor: pointer;
}

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

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

.button-primary {
  color: #20170e;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent));
  box-shadow: 0 16px 30px rgba(242, 155, 56, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(53, 36, 13, 0.1);
  box-shadow: 0 10px 24px rgba(78, 53, 19, 0.08);
}

.hero-note {
  margin: 0;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: visible;
  isolation: isolate;
  --mx: 0;
  --my: 0;
}

.hero-stage {
  position: absolute;
  inset: 28px 16px 12px 38px;
  border-radius: 42px;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 240, 200, 0.85), rgba(255, 235, 188, 0) 60%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 225, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 36px 80px rgba(88, 57, 16, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
  transform: translate3d(calc(var(--mx) * 5px), calc(var(--my) * 4px), 0);
  transition: transform 460ms cubic-bezier(0.22, 0.7, 0.25, 1);
}

.hero-stage::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: -25%;
  height: 80%;
  background: radial-gradient(50% 50% at 50% 0%, rgba(255, 214, 122, 0.55), transparent 70%);
  filter: blur(2px);
}

.hero-stage-photo {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 46px;
  width: min(64%, 390px);
  aspect-ratio: 3 / 2;
  margin: 0;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 251, 242, 0.96), rgba(255, 241, 210, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.58);
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(88, 57, 16, 0.24),
    0 10px 22px rgba(88, 57, 16, 0.16);
  transform: rotate(2.5deg) translate3d(calc(var(--mx) * 9px), calc(var(--my) * 6px), 0);
  transform-origin: 70% 80%;
  transition: transform 420ms cubic-bezier(0.22, 0.7, 0.25, 1);
}

.hero-stage-photo::before,
.hero-stage-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-stage-photo::before {
  background:
    linear-gradient(90deg, rgba(255, 247, 226, 0.94), rgba(255, 247, 226, 0.18) 22%, transparent 42%),
    linear-gradient(180deg, rgba(255, 250, 238, 0.16), rgba(255, 250, 238, 0));
}

.hero-stage-photo::after {
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.hero-stage-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.85;
}

.hero-blob-orange {
  width: 230px;
  height: 230px;
  top: 42%;
  left: -10%;
  background: radial-gradient(circle, rgba(242, 155, 56, 0.7), rgba(242, 155, 56, 0) 70%);
}

.hero-blob-green {
  width: 240px;
  height: 240px;
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(125, 179, 111, 0.55), transparent 70%);
}

.hero-blob-yellow {
  width: 180px;
  height: 180px;
  bottom: -8%;
  right: 18%;
  background: radial-gradient(circle, rgba(243, 201, 79, 0.55), transparent 70%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(75, 50, 18, 0.07) 1px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
  opacity: 0.55;
}

.visual-card,
.hero-bubble,
.visual-chip {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(67, 46, 16, 0.08);
  backdrop-filter: blur(14px);
}

.visual-card {
  background: rgba(255, 251, 243, 0.88);
  box-shadow:
    0 26px 50px rgba(92, 60, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.visual-card-main {
  top: 62px;
  left: 42px;
  width: min(58%, 292px);
  padding: 22px 24px 18px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: rotate(-2.4deg) translate3d(calc(var(--mx) * 10px), calc(var(--my) * 6px), 0);
  transition: transform 380ms cubic-bezier(0.22, 0.7, 0.25, 1);
  animation: card-float 7s ease-in-out infinite;
}

.visual-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.visual-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125, 179, 111, 0.32), rgba(125, 179, 111, 0.16));
  color: #38532f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.visual-time::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(125, 179, 111, 0.25);
}

.visual-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(75, 50, 18, 0.3);
}

.visual-place {
  letter-spacing: 0.02em;
}

.visual-card-main strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.visual-card-main strong s {
  position: relative;
  z-index: 0;
  color: var(--ink-soft);
  text-decoration: none;
}

.visual-card-main strong s::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 58%;
  height: 9px;
  background: rgba(242, 155, 56, 0.45);
  border-radius: 6px;
  transform: rotate(-2deg);
  z-index: -1;
}

.visual-card-main p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: 0.95rem;
}

.visual-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px dashed rgba(75, 50, 18, 0.18);
}

.visual-avatars {
  display: inline-flex;
}

.visual-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fffaf0;
  margin-left: -8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-soft);
  display: grid;
  place-items: center;
}

.visual-avatars span:first-child {
  margin-left: 0;
}

.visual-avatars span:nth-child(1) {
  background: linear-gradient(135deg, #f3c94f, #f29b38);
}

.visual-avatars span:nth-child(2) {
  background: linear-gradient(135deg, #b7d6ac, #7db36f);
}

.visual-avatars span:nth-child(3) {
  background: linear-gradient(135deg, #ffd895, #ec8a36);
}

.visual-avatars span:nth-child(4) {
  background: #fffaf0;
}

.visual-card-link {
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.visual-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 251, 243, 0.92);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow:
    0 14px 28px rgba(92, 60, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.visual-chip .chip-emoji {
  font-size: 1.05rem;
  line-height: 1;
}

.visual-chip {
  transition: transform 380ms cubic-bezier(0.22, 0.7, 0.25, 1);
}

.chip-roles {
  right: 4px;
  top: 232px;
  transform: rotate(6deg) translate3d(calc(var(--mx) * 14px), calc(var(--my) * 6px), 0);
  animation: card-float 6.5s ease-in-out -2.5s infinite;
}

.chip-laugh {
  right: 44px;
  bottom: 42px;
  transform: rotate(-4deg) translate3d(calc(var(--mx) * -12px), calc(var(--my) * 10px), 0);
  background: linear-gradient(135deg, rgba(243, 201, 79, 0.9), rgba(255, 217, 144, 0.95));
  color: #4a3416;
  animation: card-float 8s ease-in-out -0.8s infinite;
}

.hero-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #5a4325;
  background: rgba(255, 247, 226, 0.94);
  box-shadow: 0 16px 28px rgba(72, 52, 16, 0.1);
  transition: transform 420ms cubic-bezier(0.22, 0.7, 0.25, 1);
}

.hero-bubble::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: inherit;
  border: 1px solid rgba(67, 46, 16, 0.08);
}

.bubble-one {
  top: 22px;
  right: 38px;
  transform: rotate(2deg) translate3d(calc(var(--mx) * 18px), calc(var(--my) * 8px), 0);
  animation: card-float 8.5s ease-in-out infinite;
}

.bubble-one::after {
  left: 12px;
  bottom: -10px;
  box-shadow: -8px 8px 0 -3px rgba(255, 247, 226, 0.94);
}

.bubble-two {
  right: 56px;
  bottom: 96px;
  transform: rotate(-2deg) translate3d(calc(var(--mx) * -14px), calc(var(--my) * -10px), 0);
  background: rgba(236, 248, 228, 0.94);
  color: #34522a;
  animation: card-float 7.5s ease-in-out -1s infinite;
}

.bubble-two::after {
  right: 14px;
  top: -10px;
  background: rgba(236, 248, 228, 0.94);
  box-shadow: 8px -8px 0 -3px rgba(236, 248, 228, 0.94);
}

.hero-ring,
.hero-doodle {
  position: absolute;
  z-index: 2;
}

.hero-ring {
  right: 36px;
  bottom: 154px;
  width: 96px;
  height: 96px;
  border: 2px dashed rgba(217, 107, 32, 0.38);
  border-radius: 50%;
  animation: spin-slow 36s linear infinite;
}

.hero-doodle {
  opacity: 0.85;
}

.doodle-one {
  top: 60px;
  right: 130px;
  width: 90px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(243, 201, 79, 0.55), rgba(242, 155, 56, 0.4));
  transform: rotate(14deg) translate3d(calc(var(--mx) * 16px), calc(var(--my) * 4px), 0);
  transition: transform 480ms ease;
}

.hero-star {
  position: absolute;
  z-index: 2;
  color: var(--accent-deep);
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0.85;
  animation: twinkle 3.6s ease-in-out infinite;
}

.hero-star-one {
  top: 18%;
  left: 56px;
}

.hero-star-two {
  top: 54%;
  right: 76px;
  font-size: 1.05rem;
  color: var(--accent-green);
  animation-delay: -1.4s;
}

.hero-star-three {
  bottom: 22%;
  left: 28%;
  font-size: 0.95rem;
  animation-delay: -2.2s;
}

@keyframes card-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes spin-slow {
  to { rotate: 360deg; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.35; scale: 0.9; }
  50% { opacity: 1; scale: 1.1; }
}

@media (prefers-reduced-motion: reduce) {
  .visual-card-main,
  .chip-roles,
  .chip-laugh,
  .bubble-one,
  .bubble-two,
  .hero-ring,
  .hero-star {
    animation: none;
  }

  .hero-stage,
  .hero-stage-photo,
  .visual-card-main,
  .visual-chip,
  .hero-bubble,
  .doodle-one {
    transition: none;
  }
}

.intro-band {
  position: relative;
  z-index: 0;
  margin-bottom: 26px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 26px;
  background: rgba(255, 251, 243, 0.65);
  box-shadow: 0 12px 24px rgba(87, 60, 19, 0.06);
}

.intro-band p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  text-align: center;
}

.section {
  padding: 52px 0;
}

@supports (content-visibility: auto) {
  .section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }

  .about-section,
  .event-section {
    contain-intrinsic-size: 1px 620px;
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.section-heading-compact {
  margin-bottom: 22px;
}

.about-layout,
.host-section,
.signup-section {
  display: grid;
  gap: 26px;
}

.about-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.about-copy {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 240, 0.76);
  box-shadow: var(--shadow);
}

.about-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.about-flow-node {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(78, 56, 20, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 214, 0.74));
  box-shadow: 0 16px 30px rgba(82, 56, 17, 0.08);
}

.about-flow-node:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -13px;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff8ea;
  color: var(--accent-deep);
  font-weight: 700;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(82, 56, 17, 0.12);
}

.about-flow-node span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-flow-node strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.15;
}

.aside-card {
  display: grid;
  gap: 14px;
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 230, 178, 0.75), rgba(255, 248, 232, 0.95));
  box-shadow: 0 18px 38px rgba(111, 73, 18, 0.1);
}

.aside-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.aside-card span::before {
  content: "•";
  color: var(--accent-deep);
  font-size: 1.4rem;
  line-height: 1;
}

.cards-grid-benefits,
.rules-grid {
  display: grid;
  gap: 18px;
}

.cards-grid-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.soft-card {
  padding: 24px;
  border: 1px solid rgba(75, 55, 25, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 245, 220, 0.82)),
    var(--surface);
  box-shadow: 0 18px 36px rgba(82, 56, 17, 0.08);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
}

.soft-card h3,
.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.18;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 24px;
}

.timeline-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.timeline-overview-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px 22px 20px;
  border-radius: 28px;
  border: 1px solid rgba(74, 53, 20, 0.08);
  box-shadow: 0 18px 34px rgba(82, 56, 17, 0.08);
  overflow: hidden;
}

.timeline-overview-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  border-radius: 999px;
  opacity: 0.95;
}

.timeline-overview-soft {
  background: linear-gradient(180deg, rgba(255, 248, 233, 0.96), rgba(255, 255, 255, 0.78));
}

.timeline-overview-soft::before {
  background: linear-gradient(90deg, #f3c94f, #f29b38);
}

.timeline-overview-play {
  background: linear-gradient(180deg, rgba(255, 244, 219, 0.94), rgba(255, 250, 240, 0.8));
}

.timeline-overview-play::before {
  background: linear-gradient(90deg, #f29b38, #d96b20);
}

.timeline-overview-finale {
  background: linear-gradient(180deg, rgba(236, 247, 228, 0.98), rgba(255, 251, 243, 0.82));
}

.timeline-overview-finale::before {
  background: linear-gradient(90deg, #7db36f, #5f9a51);
}

.timeline-overview-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-overview-card strong {
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 400;
  line-height: 1;
}

.timeline-overview-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.timeline-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.timeline-signal-card {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(74, 53, 20, 0.08);
  background: rgba(255, 251, 243, 0.74);
  box-shadow: 0 16px 30px rgba(82, 56, 17, 0.06);
}

.timeline-signal-title {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.timeline-signal-visual {
  position: relative;
  min-height: 40px;
}

.timeline-signal-visual span {
  position: absolute;
  display: block;
}

.timeline-signal-visual-soft {
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline-signal-visual-soft::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 14px;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(243, 201, 79, 0.18), rgba(243, 201, 79, 0.5));
  transform: translateY(-50%);
}

.timeline-signal-visual-soft span {
  position: relative;
  z-index: 1;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(243, 201, 79, 0.96), rgba(242, 155, 56, 0.88));
  box-shadow: 0 8px 16px rgba(242, 155, 56, 0.18);
}

.timeline-signal-visual-soft span:nth-child(1) { width: 8px; height: 8px; }
.timeline-signal-visual-soft span:nth-child(2) { width: 11px; height: 11px; }
.timeline-signal-visual-soft span:nth-child(3) { width: 14px; height: 14px; }
.timeline-signal-visual-soft span:nth-child(4) { width: 18px; height: 18px; }

.timeline-signal-visual-rise {
  display: flex;
  align-items: end;
  gap: 8px;
  padding-right: 14px;
}

.timeline-signal-visual-rise::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-top: 3px solid rgba(217, 107, 32, 0.9);
  border-right: 3px solid rgba(217, 107, 32, 0.9);
  transform: rotate(45deg);
}

.timeline-signal-visual-rise span {
  position: relative;
  flex: 1 1 0;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(242, 155, 56, 0.95), rgba(217, 107, 32, 0.55));
  box-shadow: 0 8px 16px rgba(217, 107, 32, 0.14);
}

.timeline-signal-visual-rise span:nth-child(1) { height: 10px; }
.timeline-signal-visual-rise span:nth-child(2) { height: 16px; }
.timeline-signal-visual-rise span:nth-child(3) { height: 23px; }
.timeline-signal-visual-rise span:nth-child(4) { height: 30px; }

.timeline-signal-visual-fun {
  min-height: 46px;
}

.timeline-signal-visual-fun::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 16px;
  border-bottom: 4px solid rgba(125, 179, 111, 0.9);
  border-radius: 0 0 22px 22px;
}

.timeline-signal-visual-fun span {
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(125, 179, 111, 0.96), rgba(92, 148, 78, 0.82));
  box-shadow: 0 8px 16px rgba(125, 179, 111, 0.18);
}

.timeline-signal-visual-fun span:nth-child(1) {
  left: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
}

.timeline-signal-visual-fun span:nth-child(2) {
  left: 28px;
  top: 2px;
  width: 12px;
  height: 12px;
}

.timeline-signal-visual-fun span:nth-child(3) {
  left: 52px;
  top: 9px;
  width: 9px;
  height: 9px;
}

.timeline-signal-visual-fun span:nth-child(4) {
  right: 6px;
  top: 0;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, rgba(243, 201, 79, 0.96), rgba(242, 155, 56, 0.88));
}

.timeline-signal-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(242, 155, 56, 0.8), rgba(125, 179, 111, 0.9));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 22px 22px 26px;
  border: 1px solid rgba(75, 55, 25, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 16px 30px rgba(78, 53, 19, 0.06);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -25px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff7e6;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(242, 155, 56, 0.16);
}

.timeline-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(243, 201, 79, 0.26);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.split-card {
  padding: 28px;
  border: 1px solid rgba(71, 53, 26, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 243, 0.8);
  box-shadow: var(--shadow);
}

.split-card-contrast {
  background: linear-gradient(180deg, rgba(240, 253, 235, 0.82), rgba(255, 251, 243, 0.82));
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-list span,
.plain-list li {
  border-radius: 18px;
}

.tag-list span {
  padding: 12px 16px;
  background: rgba(255, 240, 205, 0.78);
  font-weight: 500;
}

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

.plain-list li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink-soft);
}

.rules-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rule-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 248, 230, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(80, 57, 18, 0.08);
  box-shadow: 0 14px 28px rgba(80, 57, 18, 0.07);
}

.rule-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.rule-card p {
  margin: 0;
  line-height: 1.5;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(243, 201, 79, 0.24), transparent 25%),
    linear-gradient(135deg, rgba(255, 245, 220, 0.95), rgba(255, 251, 243, 0.88));
  border: 1px solid rgba(75, 55, 25, 0.08);
  box-shadow: var(--shadow);
}

.event-meta {
  display: grid;
  gap: 14px;
}

.event-meta div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.event-meta span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.event-meta strong {
  font-size: 1.02rem;
}

.host-section {
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.host-photo {
  margin: 0;
  padding: 10px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 234, 186, 0.85), rgba(247, 240, 222, 0.75));
  box-shadow: var(--shadow);
}

.host-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 20px;
}

.host-copy {
  padding: 32px;
  border: 1px solid rgba(71, 53, 26, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 243, 0.82);
  box-shadow: var(--shadow);
}

.host-copy h2 {
  margin-bottom: 14px;
}

.host-copy p + p {
  margin-top: 14px;
}

.signup-callout h2 + p {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
  border: 1px solid rgba(70, 51, 22, 0.08);
  border-radius: 22px;
  background: rgba(255, 251, 243, 0.78);
  box-shadow: 0 14px 28px rgba(80, 57, 18, 0.05);
}

.faq-item summary {
  padding: 22px 0;
  font-size: 1.08rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-deep);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 20px;
}

.signup-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  align-items: stretch;
  padding-bottom: 80px;
}

.signup-callout,
.signup-card {
  padding: 32px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.signup-callout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 201, 79, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(255, 248, 230, 0.92), rgba(255, 251, 243, 0.88));
}

.signup-steps {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.signup-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-areas:
    "badge title"
    "badge text";
  column-gap: 14px;
  row-gap: 4px;
  padding: 18px 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(75, 55, 25, 0.08);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 28px rgba(82, 56, 17, 0.08);
}

.signup-step span {
  grid-area: badge;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent));
  color: #20170e;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(242, 155, 56, 0.2);
}

.signup-step strong {
  grid-area: title;
  align-self: end;
  font-size: 1rem;
}

.signup-step p {
  grid-area: text;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.45;
}

.signup-card {
  border: 1px solid rgba(72, 54, 24, 0.08);
  background: rgba(255, 251, 243, 0.84);
}

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

.signup-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.signup-form input {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(90, 69, 33, 0.12);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.signup-form input:focus {
  border-color: rgba(217, 107, 32, 0.5);
  box-shadow: 0 0 0 4px rgba(242, 155, 56, 0.12);
  background: #fff;
}

.form-caption,
.form-error,
.form-success {
  font-size: 0.94rem;
}

.form-error {
  padding: 14px 16px;
  border-radius: 16px;
  color: #7d241b;
  background: rgba(255, 228, 224, 0.92);
}

.form-success {
  padding: 14px 16px;
  border-radius: 16px;
  color: #27491d;
  background: rgba(223, 243, 213, 0.82);
}

.site-footer {
  width: var(--container);
  margin: 0 auto 28px;
  padding: 28px 26px;
  display: grid;
  justify-items: center;
  gap: 18px;
  border: 1px solid rgba(72, 54, 24, 0.08);
  border-radius: 30px;
  background: rgba(255, 249, 238, 0.86);
  box-shadow: 0 16px 30px rgba(82, 56, 17, 0.08);
}

.footer-copy {
  display: grid;
  gap: 6px;
  max-width: 40rem;
  justify-items: center;
  text-align: center;
}

.footer-copy strong {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 400;
}

.footer-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.footer-contact {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-style: normal;
}

.footer-contact strong,
.footer-contact a {
  display: inline-block;
  padding: 0;
}

.footer-contact strong {
  font-weight: 700;
}

.footer-contact a {
  color: var(--accent-deep);
  font-weight: 700;
}

.footer-contact a::before {
  content: "•";
  margin-right: 12px;
  color: rgba(72, 54, 24, 0.28);
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.about-side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.about-illustration {
  position: relative;
  margin: 0;
  min-height: 100%;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 244, 217, 0.7), rgba(255, 251, 243, 0.5));
  border: 1px solid rgba(75, 55, 25, 0.08);
  box-shadow: 0 18px 40px rgba(82, 56, 17, 0.12);
  overflow: hidden;
}

.about-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.about-photo-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  color: #fffaf0;
  background: linear-gradient(180deg, rgba(55, 36, 14, 0.16), rgba(55, 36, 14, 0.78));
  border: 1px solid rgba(255, 250, 240, 0.18);
  box-shadow: 0 18px 36px rgba(49, 30, 10, 0.2);
  backdrop-filter: blur(8px);
}

.about-photo-note span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
}

.about-photo-note strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.15;
}

.timeline-item {
  grid-template-columns: 112px minmax(0, 1fr);
  grid-template-areas:
    "time text"
    "icon text";
  row-gap: 12px;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.timeline-time { grid-area: time; }
.timeline-icon {
  grid-area: icon;
  width: 56px;
  height: 56px;
  justify-self: start;
  border-radius: 18px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(75, 55, 25, 0.06);
  box-shadow: 0 8px 18px rgba(80, 57, 18, 0.08);
  transition: transform 360ms cubic-bezier(0.34, 1.6, 0.64, 1);
}

.timeline-mini-graphic {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.timeline-mini-graphic span {
  display: block;
}

.timeline-mini-graphic-pairs {
  position: relative;
}

.timeline-mini-graphic-pairs span {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(242, 155, 56, 0.96), rgba(243, 201, 79, 0.88));
  box-shadow: 0 8px 16px rgba(242, 155, 56, 0.16);
}

.timeline-mini-graphic-pairs span:nth-child(1) {
  left: 10px;
  top: 18px;
  width: 13px;
  height: 13px;
}

.timeline-mini-graphic-pairs span:nth-child(2) {
  left: 22px;
  top: 10px;
  width: 18px;
  height: 18px;
}

.timeline-mini-graphic-pairs span:nth-child(3) {
  right: 10px;
  bottom: 12px;
  width: 15px;
  height: 15px;
}

.timeline-mini-graphic-pairs::before,
.timeline-mini-graphic-pairs::after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(217, 107, 32, 0.45);
  transform-origin: left center;
}

.timeline-mini-graphic-pairs::before {
  left: 19px;
  top: 24px;
  width: 16px;
  transform: rotate(-24deg);
}

.timeline-mini-graphic-pairs::after {
  left: 30px;
  top: 24px;
  width: 16px;
  transform: rotate(34deg);
}

.timeline-mini-graphic-break {
  position: relative;
}

.timeline-mini-graphic-break::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 22px;
  border-radius: 8px 8px 14px 14px;
  background: linear-gradient(180deg, rgba(243, 201, 79, 0.5), rgba(255, 255, 255, 0.08));
  border: 2px solid rgba(140, 93, 20, 0.4);
}

.timeline-mini-graphic-break span:nth-child(1) {
  position: absolute;
  left: 18px;
  top: 11px;
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: rgba(140, 93, 20, 0.36);
  transform: rotate(-12deg);
}

.timeline-mini-graphic-break span:nth-child(2) {
  position: absolute;
  left: 28px;
  top: 8px;
  width: 4px;
  height: 16px;
  border-radius: 999px;
  background: rgba(140, 93, 20, 0.3);
  transform: rotate(8deg);
}

.timeline-mini-graphic-break span:nth-child(3) {
  position: absolute;
  right: 9px;
  top: 16px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(140, 93, 20, 0.38);
  border-left: 0;
  border-radius: 0 10px 10px 0;
}

.timeline-mini-graphic-finish {
  position: relative;
}

.timeline-mini-graphic-finish span {
  position: absolute;
}

.timeline-mini-graphic-finish span:nth-child(1) {
  left: 14px;
  bottom: 11px;
  width: 16px;
  height: 28px;
  border: 2px solid rgba(125, 179, 111, 0.5);
  border-right: 0;
  border-radius: 10px 0 0 10px;
}

.timeline-mini-graphic-finish span:nth-child(2) {
  left: 28px;
  bottom: 11px;
  width: 15px;
  height: 28px;
  border: 2px solid rgba(125, 179, 111, 0.5);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(125, 179, 111, 0.12));
}

.timeline-mini-graphic-finish span:nth-child(3) {
  right: 10px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(243, 201, 79, 0.98), rgba(242, 155, 56, 0.9));
  box-shadow:
    -10px 9px 0 -2px rgba(243, 201, 79, 0.55),
    -2px 16px 0 -4px rgba(125, 179, 111, 0.45);
}
.timeline-body { grid-area: text; }

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(78, 53, 19, 0.12);
}

.timeline-item:hover .timeline-icon {
  transform: rotate(-6deg) scale(1.08);
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.timeline-tags span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(75, 55, 25, 0.08);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
}

.rules-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.rules-heading > div {
  max-width: 760px;
}

.comfort-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.comfort-signal {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 251, 243, 0.76);
  border: 1px solid rgba(80, 57, 18, 0.08);
  box-shadow: 0 12px 24px rgba(80, 57, 18, 0.06);
}

.comfort-signal strong {
  font-size: 1rem;
}

.comfort-signal span {
  color: var(--ink-soft);
  line-height: 1.45;
}

.rules-illustration {
  width: 220px;
  height: auto;
  max-width: 28vw;
  filter: drop-shadow(0 12px 24px rgba(80, 57, 18, 0.12));
  transform: rotate(2deg);
  transition: transform 380ms cubic-bezier(0.34, 1.6, 0.64, 1);
}

.rules-illustration:hover {
  transform: rotate(-2deg) translateY(-4px);
}

.event-card {
  position: relative;
  overflow: hidden;
}

.event-illustration {
  position: absolute;
  top: -28px;
  right: -32px;
  width: 220px;
  height: auto;
  opacity: 0.75;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(80, 57, 18, 0.1));
  transform: rotate(8deg);
  transition: transform 540ms cubic-bezier(0.22, 0.7, 0.25, 1);
}

.event-card:hover .event-illustration {
  transform: rotate(2deg) scale(1.05);
}

.soft-card {
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.soft-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(82, 56, 17, 0.16);
}

.soft-card .card-icon {
  transition: transform 360ms cubic-bezier(0.34, 1.6, 0.64, 1);
}

.soft-card:hover .card-icon {
  transform: rotate(-8deg) scale(1.1);
}

.rule-card {
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.rule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(80, 57, 18, 0.14);
}

.faq-item {
  transition: box-shadow 280ms ease, border-color 280ms ease;
}

.faq-item[open] {
  border-color: rgba(217, 107, 32, 0.28);
  box-shadow: 0 20px 38px rgba(80, 57, 18, 0.1);
}

.faq-item summary {
  transition: color 200ms ease;
}

.faq-item summary:hover {
  color: var(--accent-deep);
}

.faq-body {
  overflow: hidden;
  transition: height 320ms cubic-bezier(0.22, 0.7, 0.25, 1), opacity 240ms ease;
}

.faq-body > p {
  padding: 0 0 20px;
  margin: 0;
}

.faq-item p {
  padding: 0;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding-inline: 4px;
  transition: color 200ms ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-deep);
  transform: translateX(-50%);
  transition: width 260ms cubic-bezier(0.22, 0.7, 0.25, 1);
}

.site-nav a:not(.nav-cta):hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a.is-active::after {
  width: 22px;
}

.button {
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 720ms ease;
  pointer-events: none;
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
  transform: translateX(120%);
}

.confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 14px;
  border-radius: 2px;
  opacity: 0;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .timeline-item:hover,
  .soft-card:hover,
  .rule-card:hover,
  .event-card:hover .event-illustration,
  .rules-illustration:hover {
    transform: none;
  }

  .timeline-item,
  .soft-card,
  .rule-card,
  .event-illustration,
  .rules-illustration,
  .timeline-icon,
  .soft-card .card-icon,
  .button-primary::after,
  .faq-body {
    transition: none;
  }

  .confetti-layer { display: none; }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   Дополнительные анимации
   ============================ */

/* Индикатор прокрутки страницы */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent), var(--accent-deep));
  box-shadow: 0 0 12px rgba(242, 155, 56, 0.45);
  transform-origin: left center;
  transition: width 80ms linear;
}

/* «Живой» пульс зелёной точки в плашке времени */
.visual-time::before {
  animation: live-pulse 2.4s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(125, 179, 111, 0.25);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(125, 179, 111, 0.08);
  }
}

/* Мягкое «дыхание» у основного CTA, чтобы притягивать взгляд */
.button-primary {
  animation: cta-breathing 4.4s ease-in-out infinite;
}

.button-primary:hover,
.button-primary:focus-visible,
.button-primary:disabled {
  animation-play-state: paused;
}

@keyframes cta-breathing {
  0%, 100% {
    box-shadow: 0 16px 30px rgba(242, 155, 56, 0.24);
  }
  50% {
    box-shadow:
      0 20px 36px rgba(242, 155, 56, 0.32),
      0 0 0 6px rgba(242, 155, 56, 0.12);
  }
}

/* Покачивание значка-маски в шапке при наведении */
.brand:hover .brand-badge,
.brand:focus-visible .brand-badge {
  animation: badge-wiggle 700ms ease-in-out;
}

.brand-badge {
  transition: transform 280ms cubic-bezier(0.34, 1.6, 0.64, 1);
}

@keyframes badge-wiggle {
  0% { transform: rotate(0); }
  20% { transform: rotate(-14deg) scale(1.06); }
  45% { transform: rotate(12deg) scale(1.08); }
  70% { transform: rotate(-6deg); }
  100% { transform: rotate(0); }
}

/* Маркер-точка перед kicker-ами и мягкая пульсация */
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-deep);
  box-shadow: 0 0 0 0 rgba(217, 107, 32, 0.45);
  animation: kicker-pulse 2.8s ease-in-out infinite;
}

@keyframes kicker-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(217, 107, 32, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(217, 107, 32, 0);
  }
}

/* About-flow: подъём узлов и оживающая стрелка */
.about-flow-node {
  transition:
    transform 320ms cubic-bezier(0.34, 1.6, 0.64, 1),
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.about-flow-node:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 107, 32, 0.32);
  box-shadow: 0 22px 38px rgba(82, 56, 17, 0.14);
}

.about-flow-node:not(:last-child)::after {
  transition: transform 360ms cubic-bezier(0.34, 1.6, 0.64, 1), background 240ms ease;
}

.about-flow-node:hover:not(:last-child)::after {
  transform: translate(4px, -50%);
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent));
  color: #fff;
}

/* Aside-card: подсветка пунктов */
.aside-card {
  transition: transform 360ms cubic-bezier(0.22, 0.7, 0.25, 1), box-shadow 360ms ease;
}

.aside-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 46px rgba(111, 73, 18, 0.16);
}

.aside-card span {
  transition: transform 240ms ease, color 240ms ease;
}

.aside-card span:hover {
  transform: translateX(4px);
  color: var(--accent-deep);
}

/* Comfort-signals: hover-подъём */
.comfort-signal {
  transition:
    transform 280ms cubic-bezier(0.34, 1.6, 0.64, 1),
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.comfort-signal:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 107, 32, 0.3);
  box-shadow: 0 20px 38px rgba(80, 57, 18, 0.12);
}

/* Tag-list и plain-list — живой отклик */
.tag-list span {
  transition: transform 220ms cubic-bezier(0.34, 1.6, 0.64, 1), background-color 220ms ease;
}

.tag-list span:hover {
  transform: rotate(-1.5deg) translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, rgba(243, 201, 79, 0.9), rgba(255, 217, 144, 0.95));
}

.plain-list li {
  position: relative;
  transition:
    transform 240ms cubic-bezier(0.22, 0.7, 0.25, 1),
    background-color 240ms ease,
    color 240ms ease;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-deep);
  transform: translate(-12px, -50%) scale(0);
  transition: transform 260ms cubic-bezier(0.34, 1.6, 0.64, 1);
}

.plain-list li {
  padding-left: 24px;
}

.plain-list li:hover {
  transform: translateX(4px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.plain-list li:hover::before {
  transform: translate(0, -50%) scale(1);
}

/* Event-meta: hover-подъём ячеек */
.event-meta div {
  transition:
    transform 260ms cubic-bezier(0.34, 1.6, 0.64, 1),
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.event-meta div:hover {
  transform: translateY(-3px);
  background: rgba(255, 248, 230, 0.92);
  box-shadow: 0 14px 26px rgba(82, 56, 17, 0.1);
}

/* Signup-step: оживающий номер */
.signup-step {
  transition:
    transform 300ms cubic-bezier(0.34, 1.6, 0.64, 1),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.signup-step:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 107, 32, 0.3);
  box-shadow: 0 22px 38px rgba(82, 56, 17, 0.14);
}

.signup-step span {
  transition: transform 360ms cubic-bezier(0.34, 1.6, 0.64, 1);
}

.signup-step:hover span {
  animation: badge-wiggle 700ms ease-in-out;
}

/* Timeline-overview: подъём + растягивание акцентной полоски */
.timeline-overview-card {
  transition:
    transform 320ms cubic-bezier(0.34, 1.6, 0.64, 1),
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.timeline-overview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 107, 32, 0.24);
  box-shadow: 0 26px 44px rgba(82, 56, 17, 0.14);
}

.timeline-overview-card::before {
  left: 18px;
  right: 18px;
  height: 4px;
  transition:
    left 360ms cubic-bezier(0.22, 0.7, 0.25, 1),
    right 360ms cubic-bezier(0.22, 0.7, 0.25, 1),
    height 240ms ease;
}

.timeline-overview-card:hover::before {
  left: 6px;
  right: 6px;
  height: 6px;
}

/* Timeline-signal визуалы: одноразовая анимация при появлении в зоне видимости */
.timeline-signal-visual-rise span {
  transform-origin: bottom center;
  transform: scaleY(0.05);
  transition: transform 720ms cubic-bezier(0.34, 1.6, 0.64, 1);
}

.timeline-signals.is-revealed .timeline-signal-visual-rise span {
  transform: scaleY(1);
}

.timeline-signals.is-revealed .timeline-signal-visual-rise span:nth-child(1) { transition-delay: 80ms; }
.timeline-signals.is-revealed .timeline-signal-visual-rise span:nth-child(2) { transition-delay: 200ms; }
.timeline-signals.is-revealed .timeline-signal-visual-rise span:nth-child(3) { transition-delay: 320ms; }
.timeline-signals.is-revealed .timeline-signal-visual-rise span:nth-child(4) { transition-delay: 440ms; }

.timeline-signal-visual-soft span,
.timeline-signal-visual-fun span {
  transform: scale(0);
  transition: transform 560ms cubic-bezier(0.34, 1.6, 0.64, 1);
}

.timeline-signals.is-revealed .timeline-signal-visual-soft span,
.timeline-signals.is-revealed .timeline-signal-visual-fun span {
  transform: scale(1);
}

.timeline-signals.is-revealed .timeline-signal-visual-soft span:nth-child(1),
.timeline-signals.is-revealed .timeline-signal-visual-fun span:nth-child(1) { transition-delay: 80ms; }
.timeline-signals.is-revealed .timeline-signal-visual-soft span:nth-child(2),
.timeline-signals.is-revealed .timeline-signal-visual-fun span:nth-child(2) { transition-delay: 200ms; }
.timeline-signals.is-revealed .timeline-signal-visual-soft span:nth-child(3),
.timeline-signals.is-revealed .timeline-signal-visual-fun span:nth-child(3) { transition-delay: 320ms; }
.timeline-signals.is-revealed .timeline-signal-visual-soft span:nth-child(4),
.timeline-signals.is-revealed .timeline-signal-visual-fun span:nth-child(4) { transition-delay: 440ms; }

.timeline-signal-card {
  transition: transform 320ms cubic-bezier(0.34, 1.6, 0.64, 1), box-shadow 320ms ease;
}

.timeline-signal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(82, 56, 17, 0.14);
}

/* FAQ-item: лёгкий лифт при наведении на закрытый пункт */
.faq-item {
  transition:
    transform 260ms cubic-bezier(0.22, 0.7, 0.25, 1),
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.faq-item:not([open]):hover {
  transform: translateY(-2px);
  border-color: rgba(217, 107, 32, 0.22);
  box-shadow: 0 18px 34px rgba(80, 57, 18, 0.09);
}

.faq-item summary::after {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(243, 201, 79, 0.32);
}

.faq-item summary:hover::after {
  background: rgba(243, 201, 79, 0.55);
}

/* Hero-bubble и visual-chip — отклик на наведение */
.hero-bubble,
.visual-chip {
  cursor: default;
}

.hero-bubble:hover {
  transform: rotate(0deg) scale(1.04);
}

.visual-chip:hover {
  transform: rotate(0deg) scale(1.06) translate3d(0, -2px, 0);
}

/* Visual-card-main — лёгкий лифт */
.visual-card-main {
  cursor: default;
}

.visual-card-main:hover {
  transform: rotate(-2deg) translate3d(calc(var(--mx) * 10px), calc(var(--my) * 6px - 4px), 0);
}

/* Уважение к prefers-reduced-motion для новых блоков */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }

  .visual-time::before,
  .button-primary,
  .section-kicker::before,
  .eyebrow::before {
    animation: none;
  }

  .about-flow-node,
  .about-flow-node:not(:last-child)::after,
  .aside-card,
  .aside-card span,
  .comfort-signal,
  .tag-list span,
  .plain-list li,
  .plain-list li::before,
  .event-meta div,
  .signup-step,
  .signup-step span,
  .timeline-overview-card,
  .timeline-overview-card::before,
  .timeline-signal-visual-rise span,
  .timeline-signal-visual-soft span,
  .timeline-signal-visual-fun span,
  .timeline-signal-card,
  .faq-item {
    transition: none;
  }

  .about-flow-node:hover,
  .aside-card:hover,
  .aside-card span:hover,
  .comfort-signal:hover,
  .tag-list span:hover,
  .plain-list li:hover,
  .event-meta div:hover,
  .signup-step:hover,
  .timeline-overview-card:hover,
  .timeline-signal-card:hover,
  .faq-item:not([open]):hover,
  .hero-bubble:hover,
  .visual-chip:hover,
  .visual-card-main:hover {
    transform: none;
  }

  .timeline-signal-visual-rise span { transform: scaleY(1); }
  .timeline-signal-visual-soft span,
  .timeline-signal-visual-fun span { transform: scale(1); }

  .signup-step:hover span,
  .brand:hover .brand-badge,
  .brand:focus-visible .brand-badge {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 74px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 560px;
  }

  .rules-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .rules-illustration {
    width: 160px;
    max-width: 40vw;
    align-self: flex-end;
  }

  .event-illustration {
    width: 160px;
    top: -18px;
    right: -18px;
  }

  .cards-grid-benefits,
  .rules-grid,
  .split-section,
  .signup-section,
  .host-section,
  .about-layout,
  .timeline-overview,
  .comfort-signals,
  .timeline-signals {
    grid-template-columns: 1fr;
  }

  .about-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card .button {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  body::before,
  .hero-grain,
  .hero-stage::before,
  .hero-blob {
    display: none;
  }

  .site-header {
    top: 10px;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 24px;
    background: rgba(252, 247, 236, 0.94);
    backdrop-filter: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(71, 53, 26, 0.08);
    border-radius: 26px;
    background: rgba(255, 249, 239, 0.95);
    box-shadow: 0 14px 28px rgba(81, 58, 20, 0.1);
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 10px;
    border-radius: 16px;
  }

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

  .nav-contact {
    justify-content: center;
    text-align: center;
    min-height: 44px;
    white-space: normal;
  }

  .site-nav a:not(.nav-cta)::after {
    left: 10px;
    bottom: 7px;
    width: 0;
    transform: none;
    transform-origin: left center;
  }

  .site-nav a:not(.nav-cta):hover::after,
  .site-nav a.is-active::after {
    width: 24px;
  }

  .hero {
    gap: 26px;
    padding-top: 62px;
    padding-bottom: 34px;
  }

  .hero-copy,
  .hero-visual,
  .intro-band,
  .visual-card-main,
  .chip-laugh,
  .button-primary,
  .visual-time::before,
  .section-kicker::before,
  .eyebrow::before {
    animation: none;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-visual {
    min-height: 700px;
  }

  .hero-stage {
    inset: 14px 0 18px;
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(88, 57, 16, 0.14);
    transform: none;
    transition: none;
  }

  .hero-stage-photo {
    top: 326px;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(72%, 300px);
    aspect-ratio: 1.08;
    padding: 6px;
    border-radius: 22px;
    box-shadow: 0 16px 30px rgba(88, 57, 16, 0.18);
    transform: translateX(-50%) rotate(0.8deg);
    transition: none;
  }

  .visual-card-main {
    top: 24px;
    left: 50%;
    z-index: 4;
    width: min(84%, 292px);
    padding: 18px 18px 16px;
    border-radius: 24px;
    box-shadow: 0 14px 28px rgba(92, 60, 18, 0.14);
    transform: translateX(-50%) rotate(-1deg);
  }

  .visual-card-main strong {
    font-size: 1.46rem;
  }

  .chip-roles {
    display: none;
  }

  .chip-laugh {
    left: 50%;
    right: auto;
    bottom: 28px;
    box-shadow: 0 10px 20px rgba(92, 60, 18, 0.1);
    transform: translateX(-50%);
  }

  .hero-bubble {
    max-width: 180px;
    text-align: center;
    font-size: 0.92rem;
  }

  .visual-card,
  .hero-bubble,
  .visual-chip {
    backdrop-filter: none;
  }

  .bubble-one,
  .bubble-two,
  .hero-ring,
  .hero-doodle,
  .hero-star {
    display: none;
  }

  .timeline {
    padding-left: 18px;
  }

  .about-flow-node:not(:last-child)::after {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "time"
      "icon"
      "text";
    padding: 18px;
  }

  .timeline-item::before {
    top: 26px;
    left: -19px;
  }

  .timeline-icon {
    width: 48px;
    height: 48px;
  }

  .event-illustration {
    width: 120px;
    opacity: 0.55;
    top: -10px;
    right: -10px;
  }

  .rules-illustration {
    width: 130px;
    max-width: 45vw;
  }

  .signup-callout,
  .signup-card,
  .event-card,
  .split-card,
  .host-copy,
  .about-copy,
  .aside-card,
  .timeline-overview-card {
    padding: 24px;
  }

  .hero-stage-photo img {
    object-fit: cover;
    object-position: center 42%;
    filter: none;
  }

  .hero-stage-photo::before {
    opacity: 0.18;
  }

  .section-heading {
    padding-inline: 24px;
  }

  .split-card .section-heading-compact {
    padding-inline: 0;
  }

  .timeline {
    padding-left: 24px;
  }

  .faq-item {
    padding: 0 24px;
  }

  .host-section {
    gap: 18px;
  }

  .host-photo {
    width: min(260px, 70%);
    padding: 10px;
    border-radius: 28px;
  }

  .host-photo img {
    aspect-ratio: 1 / 1;
    border-radius: 22px;
  }

  .site-footer {
    padding: 22px 24px;
  }

  .footer-contact {
    width: fit-content;
    flex-wrap: wrap;
  }

  .scroll-progress {
    display: none;
  }
}

@media (max-width: 520px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .section-heading h2,
  .split-card h2,
  .event-card h2,
  .host-copy h2,
  .signup-callout h2 {
    font-size: 1.9rem;
  }

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

  .about-flow {
    grid-template-columns: 1fr;
  }

  .button {
    min-height: 54px;
  }

  .visual-card-main strong {
    font-size: 1.45rem;
  }

  .hero-visual {
    min-height: 660px;
  }

  .hero-stage-photo {
    top: 314px;
    width: min(72%, 252px);
  }

  .site-header {
    padding-inline: 12px;
  }

  .intro-band {
    padding: 18px 18px;
  }

  .section {
    padding: 42px 0;
  }

  .hero-actions {
    gap: 12px;
  }

  .visual-card-main {
    width: min(86%, 272px);
  }

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