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

:root {
  --navy: #1a3d6b;
  --navy-dark: #122a4a;
  --orange: #f7941d;
  --orange-dark: #e85d24;
  --orange-glow: rgba(247, 148, 29, 0.18);
  --navy-glow: rgba(26, 61, 107, 0.1);
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #1a3d6b;
  --text-muted: #5a7189;
  --border: rgba(26, 61, 107, 0.1);
  --shadow: 0 20px 50px rgba(26, 61, 107, 0.1);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.shape-navy {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  background: var(--navy-glow);
  animation: driftNavy 18s ease-in-out infinite;
}

.shape-orange {
  width: 420px;
  height: 420px;
  bottom: -100px;
  left: -100px;
  background: var(--orange-glow);
  animation: driftOrange 22s ease-in-out infinite;
}

.shape-small {
  width: 220px;
  height: 220px;
  top: 40%;
  right: 15%;
  animation: driftSmall 14s ease-in-out infinite;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo {
  display: block;
  height: auto;
  object-fit: contain;
}

.logo-header {
  width: 100px;
}

.logo-footer {
  width: 90px;
  margin-bottom: 0.75rem;
}

.logo-link {
  display: inline-flex;
  line-height: 0;
  transition: transform 0.4s var(--ease-spring);
}

.logo-link:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Page load */
.animate-in {
  animation: slideDown 0.8s var(--ease-out-expo) both;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease-out-expo),
    transform 0.9s var(--ease-out-expo);
}

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

.reveal-stagger {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo);
  transition-delay: calc(var(--i, 0) * 0.12s + 0.1s);
}

.reveal.is-visible .reveal-stagger,
.reveal-stagger.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Floating logos */
.animate-float {
  animation: logoFloat 4.5s ease-in-out infinite;
}

.animate-float-slow {
  animation: logoFloat 6s ease-in-out infinite;
}

.animate-pulse {
  animation: badgePulse 2.5s ease-in-out infinite;
}

.header,
.banner,
.main,
.footer {
  position: relative;
  z-index: 1;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem 0;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out-expo);
  border-radius: 2px;
}

.nav a:hover {
  color: var(--orange-dark);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.banner {
  max-width: 1200px;
  margin: 0.75rem auto 0;
  padding: 0 1.25rem;
}

.banner-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
  position: relative;
  transform-origin: center top;
}

.reveal.is-visible .banner-frame {
  animation: bannerReveal 1.1s var(--ease-out-expo) both;
}

.banner-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.reveal.is-visible .banner-shine {
  animation: bannerShine 1.4s var(--ease-out-expo) 0.5s both;
}

.banner-image {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}

.reveal.is-visible .banner-image {
  transform: scale(1);
}

.banner-frame:hover .banner-image {
  transform: scale(1.03);
}

.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
}

.launch {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.launch-hero {
  max-width: 640px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.12), rgba(232, 93, 36, 0.08));
  border: 1px solid rgba(247, 148, 29, 0.25);
  border-radius: 999px;
}

.title-reveal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35em;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px) rotate(3deg);
}

.reveal.is-visible .title-word {
  animation: wordReveal 0.8s var(--ease-out-expo) forwards;
}

.reveal.is-visible .title-word:nth-child(1) {
  animation-delay: 0.15s;
}

.reveal.is-visible .title-word:nth-child(2) {
  animation-delay: 0.28s;
}

.reveal.is-visible .title-word:nth-child(3) {
  animation-delay: 0.41s;
}

.title-word-accent {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.about {
  width: 100%;
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  text-align: left;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-title {
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.about p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.about strong {
  color: var(--navy);
  font-weight: 700;
}

.hp-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.notify-form,
.contact-form {
  position: relative;
}

.notify-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.75rem;
  justify-content: stretch;
}

.notify-form input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  padding: 0.95rem 1.15rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease-spring);
}

.notify-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
  transform: translateY(-2px);
}

.notify-form input::placeholder {
  color: #94a3b8;
}

.btn-notify {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  min-width: 8.5rem;
  padding: 0.95rem 1.75rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(232, 93, 36, 0.3);
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s ease;
}

.btn-notify span {
  position: relative;
  z-index: 1;
}

.btn-notify::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-notify:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(232, 93, 36, 0.42);
}

.btn-notify:hover::before {
  transform: translateX(120%);
}

.btn-notify:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-notify:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-message {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.form-message.success,
.form-message.error {
  animation: messagePop 0.5s var(--ease-spring) both;
}

.form-message.success {
  color: #15803d;
}

.form-message.error {
  color: var(--orange-dark);
}

.recaptcha-note {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.recaptcha-note a {
  color: var(--text-muted);
  text-decoration: underline;
}

.contact {
  max-width: 520px;
  margin: 3rem auto 0;
  padding: 2rem;
  text-align: left;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.partners {
  margin-top: 4rem;
}

.partners-header {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.partners-header h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.partners-lead {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.partners-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.role-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.role-card {
  padding: 1.5rem 1.5rem 1.35rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition:
    transform 0.35s var(--ease-spring),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 61, 107, 0.12);
}

.role-card.is-selected {
  border-color: rgba(247, 148, 29, 0.55);
  box-shadow:
    0 20px 40px rgba(26, 61, 107, 0.1),
    0 0 0 4px var(--orange-glow);
}

.role-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.role-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}

.role-badge-navy {
  color: var(--navy);
  background: var(--navy-glow);
}

.role-badge-orange {
  color: var(--orange-dark);
  background: var(--orange-glow);
}

.role-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--navy);
  background: var(--navy-glow);
  border-radius: 12px;
}

.role-icon-accent {
  color: var(--orange-dark);
  background: var(--orange-glow);
}

.role-icon svg {
  width: 22px;
  height: 22px;
}

.role-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.role-summary {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.role-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.role-points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
}

.role-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.role-select-btn {
  width: 100%;
  padding: 0.8rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s var(--ease-spring);
}

.role-card.is-selected .role-select-btn,
.role-select-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-color: transparent;
  transform: translateY(-1px);
}

.partner-form-card {
  position: sticky;
  top: 1.5rem;
  padding: 1.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.partner-form-card::before {
  content: "";
  display: block;
  height: 4px;
  margin: -1.75rem -1.75rem 1.25rem;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--navy), var(--orange));
}

.partner-form-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.partner-form-header p {
  margin-top: 0.35rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
}

.contact-lead {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.975rem;
  color: var(--text-muted);
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 0.95rem 1.15rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a3d6b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
}

.btn-contact {
  width: 100%;
  margin-top: 0.25rem;
}

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

.countdown-item {
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  perspective: 400px;
  transition:
    transform 0.35s var(--ease-spring),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.countdown-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(26, 61, 107, 0.14);
  border-color: rgba(247, 148, 29, 0.25);
}

.countdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  background-size: 200% 100%;
  animation: gradientSlide 4s ease infinite;
}

.countdown-value {
  display: block;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
  transform-origin: center bottom;
}

.countdown-value.tick {
  animation: countFlip 0.45s var(--ease-out-expo);
}

.countdown-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature {
  padding: 1.75rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(26, 61, 107, 0.12);
  border-color: rgba(247, 148, 29, 0.35);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--navy);
  background: var(--navy-glow);
  border-radius: 12px;
  transition: transform 0.4s var(--ease-spring);
}

.feature:hover .feature-icon {
  transform: scale(1.12) rotate(-6deg);
}

.feature-icon-accent {
  color: var(--orange-dark);
  background: var(--orange-glow);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature h2 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.feature p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.faq {
  margin-top: 3.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.faq-header h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(247, 148, 29, 0.35);
  box-shadow: 0 12px 28px rgba(26, 61, 107, 0.08);
}

.faq-item dt {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.faq-item dd {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

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

@keyframes driftNavy {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-40px, 30px);
  }
}

@keyframes driftOrange {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(50px, -35px);
  }
}

@keyframes driftSmall {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-25px, 20px) scale(1.1);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(247, 148, 29, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(247, 148, 29, 0.12);
  }
}

@keyframes bannerReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.94);
  }

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

@keyframes bannerShine {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes countFlip {
  0% {
    transform: rotateX(0);
    opacity: 1;
  }

  50% {
    transform: rotateX(-90deg);
    opacity: 0.3;
  }

  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}

@keyframes gradientSlide {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes messagePop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.95);
  }

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

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

  .reveal,
  .reveal-stagger,
  .title-word {
    opacity: 1;
    transform: none;
  }

  .banner-image {
    transform: none;
  }
}

@media (max-width: 900px) {
  .partners-layout {
    grid-template-columns: 1fr;
  }

  .partner-form-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.5rem 1rem 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
  }

  .nav a {
    font-size: 0.75rem;
  }

  .banner {
    margin-top: 0.5rem;
    padding: 0 1rem;
  }

  .banner-frame {
    border-radius: 14px;
  }

  .main {
    padding-top: 1.5rem;
  }

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

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

  .notify-form {
    flex-wrap: wrap;
  }

  .notify-form .btn-notify {
    width: 100%;
  }

  .logo-header {
    width: 84px;
  }
}
