:root {
  --white: #ffffff;
  --paper: #fbfaf9;
  --ink: #07111f;
  --muted: #5d6470;
  --line: rgba(7, 17, 31, 0.12);
  --line-strong: rgba(7, 17, 31, 0.2);
  --pink: #e91e63;
  --pink-dark: #c91455;
  --dark: #07111f;
  --glass: rgba(255, 255, 255, 0.68);
  --shadow-soft: 0 28px 70px rgba(7, 17, 31, 0.12);
  --shadow-strong: 0 34px 90px rgba(7, 17, 31, 0.2);
  --radius: 12px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.45;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 200;
  background: var(--dark);
  color: var(--white);
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand::first-letter,
.hero h1 span,
.section-heading h2 span,
.agenda-title p,
.stage-card a,
.stats-grid strong,
.contact-links a:hover,
.site-footer a:hover {
  color: var(--pink);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  font-size: 0.87rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: rgba(7, 17, 31, 0.76);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.62rem;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.form-actions,
.contact-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.35rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 18px 36px rgba(233, 30, 99, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--pink-dark);
}

.button-secondary {
  color: var(--pink);
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(233, 30, 99, 0.65);
}

.button-secondary.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.wa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 4.5rem);
  padding: 4.2rem 0 3.5rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.9) 100%),
    radial-gradient(circle at 58% 42%, rgba(233, 30, 99, 0.14), transparent 25%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 0.74fr 0.88fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 8.5ch;
  font-size: clamp(4rem, 8vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.hero-subtitle,
.section-heading p,
.contact-copy p {
  max-width: 36rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-points div {
  min-height: 4.5rem;
  padding: 0.95rem 1rem;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  color: var(--pink);
  font-size: 0.92rem;
}

.hero-points span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-actions {
  margin-top: 1.8rem;
}

.hero-orbit {
  position: relative;
  min-height: 27rem;
  border-right: 2px solid var(--dark);
}

.orbit-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 17rem;
  height: 17rem;
  border: 2.6rem solid var(--pink);
  border-right-color: rgba(233, 30, 99, 0.04);
  border-radius: 50%;
  transform: translate(-43%, -50%);
  filter: drop-shadow(0 32px 28px rgba(233, 30, 99, 0.24));
}

.orbit-disc {
  position: absolute;
  inset: 50% auto auto 57%;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-strong);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px);
}

.hero-stack {
  display: grid;
  gap: 2rem;
}

.glass-panel,
.glass-card,
.stage-card,
.process-grid li {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.glass-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
}

.panel-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(233, 30, 99, 0.24);
}

.panel-dot.dark {
  background: var(--dark);
  box-shadow: 0 18px 36px rgba(7, 17, 31, 0.24);
}

.glass-panel h2 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.glass-panel p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  min-height: calc(100svh - 4.5rem);
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading.left {
  margin-bottom: 0;
}

.section-heading h2,
.agenda-title h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 900;
}

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

.stage-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border-radius: var(--radius);
}

.stage-name {
  margin: 0;
  color: var(--pink);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.stage-card h3 {
  margin: 1rem 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.stage-card a {
  font-size: 0.9rem;
  font-weight: 900;
}

.agenda-band,
.contact-section,
.stats-section {
  background: var(--dark);
  color: var(--white);
}

.agenda-band {
  min-height: 72svh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.agenda-strip {
  display: grid;
  grid-template-columns: 1.25fr 1.8fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.7rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.agenda-title p {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agenda-title h2 {
  max-width: 21rem;
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
}

.agenda-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.agenda-features span {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.76);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  font-size: 0.82rem;
}

.agenda-cta {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.agenda-cta strong {
  color: var(--pink);
}

.stats-section {
  min-height: 52svh;
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.stats-grid article {
  display: grid;
  gap: 0.25rem;
  padding: 0.4rem 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-grid article:first-child {
  border-left: 0;
}

.stats-grid strong {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  display: grid;
  gap: 0.6rem;
  min-height: 9rem;
  padding: 1.35rem;
  border-radius: var(--radius);
}

.process-grid strong {
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}

.process-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  min-height: calc(100svh - 4.5rem);
  padding: 6rem 0;
}

.contact-section .eyebrow,
.contact-copy p,
.contact-links a {
  color: rgba(255, 255, 255, 0.74);
}

.contact-copy .eyebrow {
  color: var(--pink);
}

.contact-form {
  padding: 1.7rem;
  border-radius: var(--radius);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form label:first-child {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(233, 30, 99, 0.58);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.form-actions {
  margin-top: 1.4rem;
}

.site-footer {
  padding: 2rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid .brand {
  color: var(--ink);
}

.floating-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 15.5rem;
  padding: 0.95rem 1.15rem;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 17, 31, 0.16);
  border-radius: 10px;
  box-shadow: 0 22px 52px rgba(7, 17, 31, 0.22);
  backdrop-filter: blur(16px);
  animation: floatingWaEnter 0.7s ease-out both, floatingWaNudge 5.5s ease-in-out 1.4s infinite;
}

.floating-wa span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.floating-wa strong {
  color: var(--pink);
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

@keyframes floatingWaEnter {
  from {
    opacity: 0;
    transform: translateY(1rem) scale(0.96);
  }

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

@keyframes floatingWaNudge {
  0%,
  76%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  80% {
    transform: translateY(-2px) rotate(-1.5deg);
  }

  84% {
    transform: translateY(1px) rotate(1.5deg);
  }

  88% {
    transform: translateY(-1px) rotate(-1deg);
  }

  92% {
    transform: translateY(0) rotate(0deg);
  }
}
:focus-visible {
  outline: 3px solid rgba(233, 30, 99, 0.36);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .header-bar,
  .hero-grid,
  .agenda-strip,
  .split-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .hero-orbit {
    min-height: 20rem;
    border-right: 0;
    border-bottom: 2px solid var(--dark);
  }

  .orbit-ring {
    width: 14rem;
    height: 14rem;
  }

  .orbit-disc {
    width: 10rem;
    height: 10rem;
  }

  .stage-grid,
  .stats-grid,
  .agenda-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 1.4rem), var(--shell));
  }

  .site-header {
    position: static;
  }

  .header-bar {
    gap: 1rem;
    padding: 1rem 0;
  }

  .site-nav {
    gap: 0.85rem 1rem;
    font-size: 0.84rem;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0;
  }

  .section,
  .agenda-band,
  .stats-section,
  .contact-section {
    min-height: auto;
    padding: 4.5rem 0;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 4.6rem);
  }

  .hero-points,
  .stage-grid,
  .agenda-features,
  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-points div,
  .agenda-features span,
  .stats-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .agenda-features span,
  .stats-grid article {
    border-color: rgba(255, 255, 255, 0.14);
  }

  .stage-card {
    min-height: 11rem;
  }

  .agenda-strip {
    padding: 1.4rem;
  }

  .footer-grid {
    justify-items: start;
  }

  .floating-wa {
    right: 1rem;
    bottom: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
