:root {
  color-scheme: light;
  --bg: #fff7f8;
  --ink: #251317;
  --muted: #6f555b;
  --line: #ead5d9;
  --rose: #f43f5e;
  --rose-dark: #be123c;
  --mint: #d7f5ee;
  --sky: #dbeafe;
  --cream: #fffdf8;
  --shadow: 0 20px 70px rgba(120, 35, 55, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    repeating-linear-gradient(118deg, rgba(244, 63, 94, 0.045) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, rgba(215, 245, 238, 0.86) 0%, rgba(255, 247, 248, 0.94) 38%, rgba(219, 234, 254, 0.74) 100%);
}

img {
  display: block;
  max-width: 100%;
}

main {
  overflow: hidden;
}

.reveal,
.card,
.person,
.feed-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible,
.card.is-visible,
.person.is-visible,
.feed-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 20px 32px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 18px;
  width: min(42vw, 360px);
  height: 72%;
  border: 1px solid rgba(190, 18, 60, 0.14);
  border-radius: 8px;
  transform: rotate(5deg);
  pointer-events: none;
  animation: panel-drift 8s ease-in-out infinite;
}

.hero__copy {
  max-width: 650px;
  animation: rise-in 620ms ease-out both;
}

.pulse-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(190, 18, 60, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--rose-dark);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.48);
  animation: pulse 1.6s ease-out infinite;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.1rem, 9vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 8px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.mini-proof span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(120, 35, 55, 0.06);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
}

.button--primary::after {
  animation: shine 3.4s ease-in-out infinite;
}

.button--primary {
  color: #fff;
  background: var(--rose);
  box-shadow: 0 12px 30px rgba(244, 63, 94, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease;
}

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

.button--primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 16px 38px rgba(244, 63, 94, 0.3);
}

.hero__media {
  justify-self: center;
  width: min(100%, 380px);
  animation: float-in 780ms ease-out 120ms both, soft-float 5.5s ease-in-out 1s infinite;
}

.hero__media a {
  display: block;
  border-radius: 8px;
  position: relative;
}

.hero__media a:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 5px;
}

.hero__media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero__media a:hover img {
  transform: scale(1.015) rotate(0.3deg);
  box-shadow: 0 26px 90px rgba(120, 35, 55, 0.2);
}

.ticker {
  max-width: 1120px;
  margin: 0 auto 18px;
  padding: 0 20px;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: marquee 19s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--rose-dark);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(120, 35, 55, 0.07);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.strip div {
  min-height: 112px;
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.strip div:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(120, 35, 55, 0.1);
}

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

.strip strong {
  font-size: 1.05rem;
}

.strip span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.35;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(62px, 9vw, 112px) 20px;
}

.section__intro {
  max-width: 820px;
}

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

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(120, 35, 55, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(120, 35, 55, 0.13);
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--mint);
}

.card h3,
.card p {
  padding: 0 18px;
}

.live {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px clamp(58px, 8vw, 96px);
}

.feed {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feed-item {
  position: relative;
  padding: 18px 18px 18px 54px;
  border: 1px solid rgba(190, 18, 60, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(120, 35, 55, 0.08);
}

.feed-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 23px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 7px rgba(244, 63, 94, 0.12);
  animation: pulse-rose 2s ease-out infinite;
}

.feed-item__time {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feed-item strong {
  display: block;
  font-size: 1.14rem;
}

.feed-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.42;
}

.card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.45;
}

.cta {
  max-width: 1120px;
  margin: 0 auto 88px;
  padding: clamp(42px, 7vw, 78px) 20px;
  background: var(--mint);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 18px 54px rgba(43, 120, 100, 0.12);
}

.cta h2 {
  max-width: 850px;
  margin: 0 auto 28px;
}

.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--rose);
  box-shadow: 0 14px 38px rgba(244, 63, 94, 0.35);
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.social-toast {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 82px;
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 390px;
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid rgba(190, 18, 60, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(120, 35, 55, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(14px);
}

.social-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.social-toast__avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(244, 63, 94, 0.25);
}

.social-toast strong,
.social-toast span {
  display: block;
}

.social-toast strong {
  font-size: 0.98rem;
}

.social-toast span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
}

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

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.48);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@keyframes pulse-rose {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.38);
  }
  70% {
    box-shadow: 0 0 0 11px rgba(244, 63, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 63, 94, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes shine {
  0%,
  52% {
    left: -45%;
  }
  72%,
  100% {
    left: 120%;
  }
}

@keyframes panel-drift {
  0%,
  100% {
    transform: rotate(5deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(10px);
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 78px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .hero__media {
    width: min(100%, 300px);
  }

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

  .strip div {
    min-height: auto;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero::before {
    top: auto;
    right: 10px;
    bottom: 22px;
    width: 74vw;
    height: 42%;
  }
}

@media (max-width: 460px) {
  .actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 3rem;
  }

  .lead {
    margin-top: 20px;
  }

}

@media (min-width: 821px) {
  .social-toast {
    left: 24px;
    right: auto;
    bottom: 24px;
  }
}

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