/* ===== Paleta — Night Stadium ===== */
:root {
  --night:         #040c07;
  --field-dark:    #07160d;
  --field-mid:     #0b2015;
  --field-alt:     #0e2a1c;
  --field-section: #091810;

  --purple:        #7c3aed;
  --purple-deep:   #5b21b6;
  --purple-bright: #8b5cf6;

  --green-vivid:   #16a34a;
  --green-bright:  #22c55e;
  --green-neon:    #4ade80;
  --green-glow:    rgba(34, 197, 94, 0.3);

  --red-accent:    #dc2626;
  --amber:         #f59e0b;

  --prosix-purple:  #a855f7;
  --prosix-pink:    #ec4899;

  --white:         #ffffff;
  --font:          'Outfit', system-ui, sans-serif;
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
  background: var(--field-dark);
  overflow-x: hidden;
}

/* Noise overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Top bar — estilo placar / ticker ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  padding: 0.45rem 0;
  background: linear-gradient(90deg, #15803d 0%, var(--green-vivid) 50%, #15803d 100%);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar__ticker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.topbar__ball { font-size: 0.9rem; }
.topbar__sep  { opacity: 0.55; }
.topbar__city { opacity: 0.85; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 1.85rem;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  background: linear-gradient(180deg, rgba(4, 12, 7, 0.98) 0%, transparent 100%);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header__brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.header__microsoft {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.header__red {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}
.header__red em {
  font-style: normal;
  font-weight: 400;
  font-size: 0.85em;
  opacity: 0.85;
}
.header__red-accent {
  color: var(--red-accent);
  font-weight: 800;
}
.header__btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green-vivid);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.header__btn:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.35);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Fundo base verde escuro */
.hero__grass-base {
  position: absolute;
  inset: 0;
  background: var(--field-dark);
}

/* Listras de gramado */
.hero__stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    var(--field-dark)  0px,
    var(--field-dark)  64px,
    var(--field-alt)   64px,
    var(--field-alt)   128px
  );
}

/* Holofotes do estádio — cantos superiores */
.hero__lights {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 5%  0%, rgba(245, 158, 11, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 55% 55% at 95% 0%, rgba(245, 158, 11, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 50%  0%, rgba(7, 22, 13, 0.5)   0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
}

/* Linhas do campo SVG */
.hero__pitch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Gradiente overlay para focar no texto */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(4, 12, 7, 0.90) 0%,
    rgba(4, 12, 7, 0.70) 45%,
    rgba(4, 12, 7, 0.15) 100%
  );
}

/* Layout do hero */
.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr 380px;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

/* Badge "KICK OFF" */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.8); }
}

/* Título */
.hero__title {
  font-size: clamp(2.1rem, 5.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-neon) 55%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 2rem;
  line-height: 1.65;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__meta {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Bola de futebol animada */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__ball-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.hero__ball-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__ball-svg {
  width: 210px;
  height: 210px;
  filter:
    drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 80px rgba(255, 255, 255, 0.08));
  animation: ball-float 7s ease-in-out infinite;
}
@keyframes ball-float {
  0%,  100% { transform: translateY(0px)   rotate(0deg); }
  30%        { transform: translateY(-14px) rotate(6deg); }
  65%        { transform: translateY(-7px)  rotate(-4deg); }
}
.hero__ball-field {
  opacity: 0.55;
  width: 230px;
}
.hero__ball-field svg { width: 100%; }

@media (max-width: 899px) {
  .hero__visual { display: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--green-vivid);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn--primary:hover {
  background: var(--green-bright);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.38);
}
.btn--block { width: 100%; }
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.btn--whatsapp {
  background: #25d366;
  color: #fff;
  margin-top: 1rem;
}
.btn--whatsapp:hover {
  background: #1ebe5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn__wa-icon {
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ===== Section common ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin: 0 0 0.5rem;
}
.section-title {
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 900;
  margin: 0 0 2.5rem;
  max-width: 22ch;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.section-title--center { max-width: none; }

/* ===== Block sections ===== */
.block {
  position: relative;
  padding: 5rem 0;
}

/* ===== Heat section ===== */
.block--heat {
  padding: 0;
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heat__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--field-dark) 0%, #1a3d20 50%, var(--field-dark) 100%);
}
.heat__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.heat__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 12, 7, 0.72) 0%,
    rgba(4, 12, 7, 0.25) 50%,
    rgba(4, 12, 7, 0.78) 100%
  );
  pointer-events: none;
}
.heat__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}
.heat__quote-mark {
  font-size: 5rem;
  line-height: 0.8;
  color: var(--green-bright);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.65;
}
.heat__text {
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-style: italic;
}

/* ===== Products ===== */
.block--products {
  background: var(--field-section);
  overflow: hidden;
}
.block__field-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    var(--field-section) 0px,
    var(--field-section) 56px,
    rgba(14, 42, 28, 0.5) 56px,
    rgba(14, 42, 28, 0.5) 112px
  );
  pointer-events: none;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.product-card:nth-child(1) { transition-delay: 0s; }
.product-card:nth-child(2) { transition-delay: 0.08s; }
.product-card:nth-child(3) { transition-delay: 0.16s; }

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.35);
}

/* Boon */
.product-card[data-product="boon"] {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09));
  border-color: rgba(255, 255, 255, 0.3);
}
.product-card[data-product="boon"]:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.4);
}

/* Prosix.ai */
.product-card[data-product="prosix"] {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.42), rgba(236, 72, 153, 0.25));
  border-color: rgba(168, 85, 247, 0.5);
}
.product-card[data-product="prosix"]:hover {
  border-color: rgba(168, 85, 247, 0.75);
  box-shadow: 0 18px 52px rgba(168, 85, 247, 0.3);
}
.product-card[data-product="prosix"] .product-card__name {
  background: linear-gradient(135deg, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* S.A On Field */
.product-card[data-product="sa"] {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.25), rgba(34, 197, 94, 0.10));
  border-color: rgba(34, 197, 94, 0.38);
}
.product-card[data-product="sa"]:hover {
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 18px 52px rgba(34, 197, 94, 0.2);
}
.product-card[data-product="sa"] .product-card__name {
  color: var(--green-bright);
}

.product-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
}
.product-card__icon svg {
  width: 100%;
  height: 100%;
}
.product-card__name {
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.product-card__tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-card__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  line-height: 1.55;
}

.product-card__link {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.product-card__link:hover {
  color: var(--white);
}
.product-card[data-product="posix"] .product-card__link,
.product-card[data-product="prosix"] .product-card__link {
  color: rgba(192, 132, 252, 0.7);
}
.product-card[data-product="posix"] .product-card__link:hover,
.product-card[data-product="prosix"] .product-card__link:hover {
  color: #c084fc;
}
.product-card[data-product="sa"] .product-card__link {
  color: rgba(74, 222, 128, 0.6);
}
.product-card[data-product="sa"] .product-card__link:hover {
  color: var(--green-neon);
}

/* ===== Benefits ===== */
.block--benefits {
  background: var(--field-dark);
  padding: 4.5rem 0;
}
.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.2s, border-color 0.2s;
}
.benefits__item:hover {
  background: rgba(34, 197, 94, 0.07);
  border-color: rgba(34, 197, 94, 0.22);
}
.benefits__icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: -0.05rem;
}

/* ===== Info (data / local) ===== */
.block--info {
  background: var(--field-section);
}
.info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.info__card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(9, 24, 16, 0.85));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.info__card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.08);
}
.info__card-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.info__icon { font-size: 1.35rem; }
.info__label {
  font-size: 0.72rem;
  color: var(--green-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.info__value {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}
.info__presencial {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border-left: 4px solid var(--red-accent);
}
.info__presencial p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

/* ===== Signup ===== */
.block--signup {
  background: linear-gradient(180deg, var(--field-dark) 0%, var(--field-mid) 100%);
  padding: 5rem 0 6rem;
  overflow: hidden;
}
/* Linha de campo decorativa no topo */
.signup__field-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--green-vivid) 25%,
    var(--green-bright) 50%,
    var(--green-vivid) 75%,
    transparent 100%
  );
  opacity: 0.5;
}
.signup__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 860px) {
  .signup__layout {
    grid-template-columns: 1fr 420px;
    gap: 3rem;
  }
}
.signup__copy { max-width: 520px; }
.signup__title {
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 0.75rem;
  letter-spacing: -0.025em;
}
.signup__text {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
}
.signup__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.signup__list li {
  position: relative;
  padding-left: 1.5rem;
}
.signup__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 700;
}
.signup__box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 2rem;
  position: sticky;
  top: 6rem;
  backdrop-filter: blur(10px);
}
.signup__form .field { margin-bottom: 1.25rem; }
.signup__form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
}
.signup__form input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.signup__form input::placeholder { color: rgba(255, 255, 255, 0.32); }
.signup__form input:focus {
  outline: none;
  border-color: var(--green-vivid);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.22);
}
.signup__form button[type="submit"] { margin-top: 0.5rem; }

.signup__success {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.signup__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(37, 211, 102, 0.18);
  color: #25d366;
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.signup__success-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}
.signup__success-text {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.5rem;
  font-size: 1rem;
}

/* ===== Footer ===== */
.footer {
  padding: 2.25rem 0;
  background: var(--night);
  border-top: 1px solid rgba(34, 197, 94, 0.1);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer__brand {
  font-weight: 700;
  margin: 0;
}
.footer__brand em {
  font-style: normal;
  font-weight: 400;
  opacity: 0.85;
}
.footer__red-accent {
  color: var(--red-accent);
  font-weight: 800;
}
.footer__copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}

/* ===== Animations ===== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.38s; }

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .topbar__city { display: none; }
  .benefits__item { padding: 1rem 1.25rem; }
  .hero__title { font-size: clamp(1.9rem, 8vw, 2.5rem); }
}
