:root {
  --se-blue: #003893;
  --se-red: #ce1126;
  --se-yellow: #fcd116;
  --se-green: #007a3d;
  --se-sky: #74acdf;
  --se-ink: #1f2937;
  --se-paper: #ffffff;
  --shadow-pop: 0 14px 30px rgba(31, 41, 55, 0.14);
}

* {
  box-sizing: border-box;
}

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

.brand-float {
  animation: brand-float 4s ease-in-out infinite;
}

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

.page-shell {
  max-width: 72rem;
}

.landing {
  max-width: 72rem;
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  padding: 2rem 1rem;
  overflow: hidden;
}

.hero-card {
  width: 100%;
  max-width: 100%;
  max-height: 44vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(0, 43, 127, 0.12);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}

@media (max-width: 520px) {
  .landing {
    padding: 0;
  }
  .hero-card {
    padding: 0.5rem;
    border-radius: 0;
  }
}

.hero-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-logo-small {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-copy {
  max-width: 100%;
}

.seo-content {
  padding: 1rem;
  color: var(--se-ink);
  font-size: 0.95rem;
  line-height: 1.6;
}

.seo-content h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.seo-content p {
  margin: 0 0 0.75rem;
}

.badge {
  display: block;
  margin: 0.5rem 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--se-green);
}

.hero-title {
  margin: 0;
  font-size: clamp(1.4rem, 6vw, 2.25rem);
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.hero-subtitle {
  margin: 1rem 0 0 0;
  font-size: 1.05rem;
  color: rgba(31, 41, 55, 0.8);
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--se-red);
  border: 0;
  appearance: none;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(206, 17, 38, 0.35);
  cursor: pointer;
}


@media (min-width: 900px) {
  .landing {
    padding: 3rem 1.5rem;
  }

  .hero-card {
    padding: 3rem;
    gap: 1.5rem;
  }

  .hero-logo-small {
    width: 4rem;
    height: 4rem;
  }

  .hero-copy {
    max-width: 38rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }
}

/* Brand page */
.brand-page {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.brand-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(0, 43, 127, 0.12);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-pop);
  padding: 1.5rem;
}

.brand-title {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.15;
  font-weight: 900;
}

.brand-title span {
  display: block;
  color: var(--se-blue);
}

.brand-subtitle {
  margin: 0.9rem 0 0;
  color: rgba(31, 41, 55, 0.8);
  font-size: 1.02rem;
}

.brand-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-blue,
.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
}

.btn-blue {
  border: 0;
  background: var(--se-blue);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 43, 127, 0.25);
}

.btn-outline {
  border: 2px solid var(--se-blue);
  background: #fff;
  color: var(--se-blue);
}

.brand-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-glow {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(116, 172, 223, 0.35);
  filter: blur(18px);
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 15rem;
  height: 15rem;
  border-radius: 1.25rem;
  border: 8px solid #fff;
  object-fit: cover;
  box-shadow: var(--shadow-pop);
}

.brand-section {
  margin-top: 2rem;
  border: 1px solid rgba(0, 43, 127, 0.12);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-pop);
  padding: 1.5rem;
}

.brand-section h2 {
  margin: 0;
  font-size: 1.6rem;
}

.brand-section > p {
  margin: 0.4rem 0 0;
  color: rgba(31, 41, 55, 0.75);
}

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

.swatch {
  border-radius: 1rem;
  padding: 1rem;
}

.swatch p {
  margin: 0;
  font-weight: 800;
}

.swatch span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.swatch-blue { background: var(--se-blue); color: #fff; }
.swatch-red { background: var(--se-red); color: #fff; }
.swatch-yellow { background: var(--se-yellow); color: var(--se-ink); }
.swatch-green { background: var(--se-green); color: #fff; }
.swatch-sky { background: var(--se-sky); color: var(--se-ink); }
.swatch-ink { background: var(--se-ink); color: #fff; }
.swatch-white { background: #fff; color: var(--se-ink); border: 1px solid rgba(31, 41, 55, 0.2); }

.brand-cards {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.brand-cards article {
  border: 1px solid rgba(0, 43, 127, 0.12);
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-pop);
  padding: 1.1rem;
}

.card-kicker {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.card-kicker.blue { color: var(--se-blue); }
.card-kicker.red { color: var(--se-red); }

.brand-cards h3 {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
}

.brand-cards p:last-child {
  margin: 0.4rem 0 0;
  color: rgba(31, 41, 55, 0.78);
}

@media (min-width: 900px) {
  .brand-page {
    padding-top: 2.8rem;
  }

  .brand-hero {
    grid-template-columns: 1fr 1fr;
    padding: 2.2rem;
  }

  .brand-title {
    font-size: 3rem;
  }

  .brand-logo {
    width: 18rem;
    height: 18rem;
  }

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

  .brand-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
