:root {
  --ink: #16171d;
  --muted: #626777;
  --paper: #ffffff;
  --soft: #f7f6f4;
  --soft-rose: #fff2f5;
  --coral: #ef4c3b;
  --pink: #e92f61;
  --magenta: #cf235a;
  --teal: #18a6a1;
  --orange: #f39a1e;
  --lime: #66ae39;
  --navy: #151922;
  --line: rgba(22, 23, 29, 0.11);
  --shadow: 0 30px 80px rgba(32, 28, 42, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 14px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 35px rgba(25, 25, 35, .08);
}

.nav-shell {
  width: min(calc(100% - 32px), 1240px);
  min-height: 68px;
  margin: 0 auto;
  padding: 8px 10px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 38px rgba(35, 27, 48, .08);
}

.site-header.scrolled .nav-shell {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 11px 13px;
  color: #363946;
  font-size: .94rem;
  font-weight: 650;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}

.main-nav a:hover {
  color: var(--pink);
  background: rgba(233, 47, 97, .07);
}

.main-nav .nav-cta {
  margin-left: 7px;
  padding-inline: 19px;
  color: white;
  background: var(--navy);
}

.main-nav .nav-cta:hover {
  color: white;
  background: var(--pink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 13px;
  background: var(--navy);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: white;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 155px 0 115px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(239, 76, 59, .12), transparent 31%),
    radial-gradient(circle at 83% 25%, rgba(24, 166, 161, .13), transparent 27%),
    linear-gradient(135deg, #fff 0%, #fff7f6 46%, #fff 100%);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  box-shadow: 0 0 0 6px rgba(233, 47, 97, .09);
}

.hero h1,
.section-heading h2,
.model-intro h2,
.alliance-copy h2,
.contact-copy h2 {
  margin: 0;
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(2.65rem, 5vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 span {
  background: linear-gradient(100deg, var(--coral), var(--pink) 50%, #c92869);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #585d6c;
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 22px;
  border: 0;
  border-radius: 15px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(110deg, var(--coral), var(--pink));
  box-shadow: 0 16px 30px rgba(233, 47, 97, .23);
}

.button-primary:hover {
  box-shadow: 0 20px 36px rgba(233, 47, 97, .31);
}

.button-secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
}

.button-dark {
  color: white;
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(21, 25, 34, .15);
}

.button-white {
  color: var(--navy);
  background: white;
}

.button-full {
  width: 100%;
}

.hero-proof {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  padding-right: 22px;
}

.hero-proof div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

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

.hero-proof strong {
  color: var(--navy);
  font-size: .98rem;
}

.hero-proof span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.4;
}

.hero-visual {
  min-height: 570px;
  display: grid;
  place-items: center;
}

.logo-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-stage::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.9), rgba(255,255,255,.4) 38%, rgba(255,255,255,.08) 70%),
    linear-gradient(145deg, rgba(233,47,97,.14), rgba(24,166,161,.11));
  filter: blur(1px);
  box-shadow: inset 0 0 80px rgba(255,255,255,.8);
}

.logo-card {
  position: relative;
  z-index: 3;
  width: 74%;
  aspect-ratio: 1;
  padding: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-orbit {
  position: absolute;
  border: 1px solid rgba(233,47,97,.17);
  border-radius: 50%;
}

.orbit-one {
  inset: 4%;
  animation: orbit 17s linear infinite;
}

.orbit-two {
  inset: 16%;
  border-style: dashed;
  border-color: rgba(24,166,161,.25);
  animation: orbit-reverse 13s linear infinite;
}

.orbit-one::after,
.orbit-two::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  top: 9%;
  left: 23%;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 8px rgba(233,47,97,.08);
}

.orbit-two::after {
  top: auto;
  bottom: 4%;
  left: auto;
  right: 22%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(24,166,161,.08);
}

.floating-tag {
  position: absolute;
  z-index: 5;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 16px 11px 11px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 17px;
  color: #343744;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(35, 27, 48, .12);
  font-size: .87rem;
  font-weight: 800;
}

.tag-one {
  left: 0;
  top: 20%;
  animation: float-small 5s ease-in-out infinite;
}

.tag-two {
  right: -1%;
  bottom: 18%;
  animation: float-small 5s ease-in-out 1.1s infinite;
}

.tag-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  font-size: 1.25rem;
}

.tag-two .tag-icon {
  background: linear-gradient(135deg, var(--teal), #30bcae);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .5;
}

.hero-glow-one {
  width: 310px;
  height: 310px;
  left: -120px;
  top: 26%;
  background: rgba(243,154,30,.18);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  right: -230px;
  bottom: 5%;
  background: rgba(233,47,97,.15);
}

.hero-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -95px;
  height: 160px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: white;
}

.section {
  position: relative;
  padding: 115px 0;
}

.section-light {
  background: white;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2,
.model-intro h2,
.alliance-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.04;
}

.section-heading p,
.model-intro p,
.alliance-copy p,
.contact-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

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

.value-card {
  min-height: 330px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.value-card:hover {
  transform: translateY(-7px);
  border-color: rgba(233,47,97,.26);
  box-shadow: 0 25px 50px rgba(33,30,43,.09);
}

.value-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 65px;
  border-radius: 16px;
  color: var(--pink);
  background: var(--soft-rose);
  font-weight: 900;
}

.value-card:nth-child(2) .value-number {
  color: var(--teal);
  background: rgba(24,166,161,.09);
}

.value-card:nth-child(3) .value-number {
  color: var(--orange);
  background: rgba(243,154,30,.11);
}

.value-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.3rem;
  letter-spacing: -.025em;
}

.value-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-dark {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 30%, rgba(24,166,161,.18), transparent 30%),
    radial-gradient(circle at 8% 80%, rgba(233,47,97,.2), transparent 25%),
    var(--navy);
}

.model-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 85px;
  align-items: start;
}

.section-kicker-light {
  color: #ff7898;
}

.model-intro {
  position: sticky;
  top: 130px;
}

.model-intro h2 {
  color: white;
}

.model-intro p {
  color: rgba(255,255,255,.68);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  margin-top: 27px;
  color: white;
  font-weight: 800;
}

.text-link span {
  color: #ff7898;
}

.process-list {
  position: relative;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 53px;
  bottom: 53px;
  width: 1px;
  background: linear-gradient(var(--pink), var(--teal), var(--orange));
  opacity: .75;
}

.process-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 24px 0 34px;
}

.process-marker {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  color: white;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,.17);
}

.process-item:nth-child(2) .process-marker {
  background: rgba(24,166,161,.15);
}

.process-item:nth-child(3) .process-marker {
  background: rgba(243,154,30,.15);
}

.process-item h3 {
  margin: 3px 0 8px;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}

.process-item p {
  max-width: 570px;
  margin: 0;
  color: rgba(255,255,255,.64);
}

.section-support {
  background:
    linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(22,23,29,.03) 40px);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.support-card {
  position: relative;
  min-height: 570px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 20px 55px rgba(36,31,48,.07);
}

.support-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(233,47,97,.06);
}

.support-card-kind::after {
  background: rgba(24,166,161,.08);
}

.support-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  border-radius: 19px;
  color: var(--pink);
  background: var(--soft-rose);
}

.support-card-kind .support-icon {
  color: var(--teal);
  background: rgba(24,166,161,.09);
}

.support-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(233,47,97,.08);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.support-card-kind .support-badge {
  color: var(--teal);
  background: rgba(24,166,161,.09);
}

.support-card h3 {
  margin: 17px 0 12px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  letter-spacing: -.045em;
}

.support-card p {
  color: var(--muted);
}

.support-card ul {
  min-height: 128px;
  margin: 27px 0 34px;
  padding: 0;
  list-style: none;
}

.support-card li {
  position: relative;
  padding: 9px 0 9px 29px;
  color: #4d5260;
  border-bottom: 1px solid var(--line);
}

.support-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 900;
}

.support-card-kind li::before {
  color: var(--teal);
}

.support-note {
  max-width: 850px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 28px auto 0;
  padding: 17px 20px;
  border: 1px solid rgba(22,23,29,.09);
  border-radius: 17px;
  background: rgba(255,255,255,.75);
}

.support-note-icon {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-size: .8rem;
  font-weight: 900;
}

.support-note p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.section-alliance {
  overflow: hidden;
  background: #f7f4ef;
}

.section-alliance::before {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  left: -260px;
  bottom: -250px;
  border: 1px solid rgba(233,47,97,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(233,47,97,.03), 0 0 0 120px rgba(24,166,161,.025);
}

.alliance-grid {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 70px;
  align-items: center;
}

.alliance-copy h2 {
  max-width: 720px;
}

.alliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.alliance-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(22,23,29,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  color: #4d5260;
  font-size: .84rem;
  font-weight: 750;
}

.alliance-panel {
  position: relative;
  min-height: 430px;
  padding: 45px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 95% 5%, rgba(24,166,161,.38), transparent 33%),
    radial-gradient(circle at 0% 100%, rgba(233,47,97,.38), transparent 42%),
    var(--navy);
  box-shadow: var(--shadow);
}

.panel-line {
  width: 70px;
  height: 4px;
  margin-bottom: 75px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--pink), var(--teal));
}

.panel-label {
  color: #ff8da6;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.alliance-panel h3 {
  margin: 14px 0 13px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.045em;
}

.alliance-panel p {
  color: rgba(255,255,255,.65);
}

.alliance-panel .button {
  margin-top: 22px;
}

.section-contact {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin-top: 35px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.contact-item:hover {
  transform: translateX(4px);
  border-color: rgba(233,47,97,.25);
  background: var(--soft-rose);
}

.contact-symbol {
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--pink);
  background: var(--soft-rose);
  font-weight: 900;
}

.contact-item span:last-child {
  min-width: 0;
  color: #343844;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-item small {
  display: block;
  margin-bottom: 1px;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 650;
}

.contact-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fbfbfa;
  box-shadow: 0 25px 65px rgba(33,30,43,.08);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading span {
  color: var(--pink);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: 1.65rem;
  letter-spacing: -.03em;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: #3e424e;
  font-size: .86rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid rgba(22,23,29,.12);
  border-radius: 13px;
  outline: none;
  color: var(--navy);
  background: white;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(233,47,97,.55);
  box-shadow: 0 0 0 4px rgba(233,47,97,.08);
}

.form-privacy {
  margin: 13px 0 0;
  color: #7a7f8b;
  font-size: .76rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: white;
  background: #25D366;
  box-shadow: 0 16px 32px rgba(37,211,102,.3);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.site-footer {
  padding: 45px 0 24px;
  color: rgba(255,255,255,.7);
  background: #10131a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 35px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: white;
}

.footer-brand span {
  font-size: .84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: .88rem;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: white;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  font-size: .82rem;
}

.footer-disclaimer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.footer-disclaimer p {
  max-width: 900px;
  margin: 0;
  font-size: .75rem;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.reveal-delay {
  transition-delay: .12s;
}

.reveal-delay-two {
  transition-delay: .24s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-.8deg); }
  50% { transform: translateY(-15px) rotate(.8deg); }
}

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

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes orbit-reverse {
  to { transform: rotate(-360deg); }
}

@media (max-width: 1020px) {
  .hero {
    padding-top: 135px;
  }

  .hero-grid,
  .model-grid,
  .alliance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .hero h1,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }

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

  .logo-stage {
    max-width: 520px;
  }

  .model-intro,
  .contact-copy {
    position: static;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 0;
  }

  .value-number {
    margin-bottom: 35px;
  }

  .alliance-copy {
    max-width: 800px;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding-top: 9px;
  }

  .nav-shell {
    min-height: 62px;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .brand span {
    font-size: .95rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    max-height: 0;
    overflow: hidden;
    display: grid;
    gap: 4px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height .25s ease, opacity .2s ease, transform .2s ease, padding .25s ease, border-color .25s ease;
  }

  .main-nav.open {
    max-height: 440px;
    padding: 12px;
    border-color: var(--line);
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 24px 55px rgba(31,27,41,.16);
  }

  .main-nav a {
    padding: 14px;
  }

  .main-nav .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 130px 0 95px;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }

  .hero-proof div,
  .hero-proof div + div {
    padding: 0 0 15px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .floating-tag {
    font-size: .76rem;
  }

  .tag-one {
    left: -2%;
  }

  .tag-two {
    right: -2%;
  }

  .section {
    padding: 85px 0;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    width: calc(100% - 20px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .logo-card {
    width: 78%;
  }

  .floating-tag {
    min-height: 48px;
    padding: 8px 10px 8px 8px;
  }

  .tag-icon {
    width: 30px;
    height: 30px;
  }

  .tag-one {
    top: 11%;
  }

  .tag-two {
    bottom: 8%;
  }

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

  .support-card,
  .alliance-panel,
  .contact-form {
    padding: 27px;
    border-radius: 23px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-item {
    gap: 17px;
  }

  .contact-item {
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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