:root {
  --c-primary: #112b46;
  --c-primary-2: #1a3d62;
  --c-primary-3: #345a84;
  --c-secondary: #e0b63f;
  --c-secondary-2: #f0cf73;
  --c-secondary-soft: #fbf0c8;
  --c-paper: #fffaf0;
  --c-paper-2: #fff5dd;
  --c-surface: #ffffff;
  --c-surface-soft: #f7f6f2;
  --c-ink: #1f2c3b;
  --c-ink-soft: #576576;
  --c-line: #e6dfcf;
  --c-line-strong: #d3c8ae;
  --font-body: 'Google Sans Text', system-ui, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;
  --r-xs: 12px;
  --r-sm: 18px;
  --r-md: 24px;
  --r-lg: 34px;
  --shadow-sm: 0 10px 30px rgba(17, 43, 70, 0.08);
  --shadow-md: 0 18px 48px rgba(17, 43, 70, 0.12);
  --shadow-gold: 0 16px 38px rgba(224, 182, 63, 0.24);
  --container: 1200px;
  --gutter: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(240, 207, 115, 0.32), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, var(--c-paper) 100%);
  color: var(--c-ink);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--c-primary);
  line-height: 1.1;
}

p {
  margin: 0;
  color: var(--c-ink-soft);
  line-height: 1.65;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.announcement-bar {
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-primary-2) 100%);
  color: #fdf8e7;
  font-size: 0.9rem;
}

.announcement-inner {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 0;
}

.announcement-inner span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.announcement-inner i {
  color: var(--c-secondary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(210, 201, 180, 0.8);
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--c-primary) 0%, var(--c-primary-3) 100%);
  color: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 1.35rem;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.04rem;
  color: var(--c-primary);
}

.brand-copy small {
  color: var(--c-ink-soft);
  font-size: 0.8rem;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--c-ink-soft);
  font-weight: 500;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--c-secondary-soft);
  color: var(--c-primary);
}

.main-nav .nav-cta {
  background: var(--c-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.main-nav .nav-cta:hover {
  background: var(--c-primary-2);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  color: var(--c-primary);
}

.btn,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--c-primary-2);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--c-secondary) 0%, #f0c860 100%);
  color: var(--c-primary);
  box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--c-primary);
}

.pill,
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--c-secondary-soft);
  color: var(--c-primary);
  font-size: 0.86rem;
  font-weight: 600;
}

.section {
  padding: 88px 0;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary-2);
}

.section-kicker::before {
  content: '';
  width: 28px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-secondary), transparent);
}

.card-grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.soft-card,
.glass-card {
  border-radius: var(--r-md);
  background: var(--c-surface);
  border: 1px solid rgba(224, 218, 199, 0.9);
  box-shadow: var(--shadow-sm);
}

.soft-card {
  background: linear-gradient(180deg, #fffdf8 0%, #fff8ea 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(17, 43, 70, 0.86);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.floating-badge strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.stat-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stat-chip {
  min-width: 160px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.stat-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--c-primary);
}

.icon-card {
  padding: 28px;
}

.icon-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--c-secondary-soft);
  color: var(--c-primary);
  font-size: 1.2rem;
}

.icon-card p {
  margin-top: 12px;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-list-item {
  display: flex;
  gap: 14px;
  align-items: start;
}

.stack-list-item i {
  margin-top: 4px;
  color: var(--c-secondary);
}

.media-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.media-card-thumb {
  overflow: hidden;
  border-radius: 22px;
  min-height: 128px;
}

.media-card-body {
  display: grid;
  gap: 10px;
}

.news-card {
  overflow: hidden;
}

.news-card .news-cover {
  aspect-ratio: 16 / 10;
}

.news-card .news-body {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--c-primary-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow-row i {
  color: var(--c-secondary);
}

.site-footer {
  /* margin-top: 72px; */
  padding: 46px 0 28px;
  background: #10283f;
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-card {
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.footer-brand-card {
  background: none;
}

.footer-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(224, 182, 63, 0.16);
  color: var(--c-secondary-2);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-card h3,
.footer-card h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer-card p,
.footer-card li,
.footer-card a,
.footer-contact-list span,
.footer-note {
  color: rgba(255, 255, 255, 0.74);
}

.footer-contact-list,
.footer-links {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.page-shell {
  padding-top: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    linear-gradient(118deg, rgba(11, 33, 55, 0.94) 0%, rgba(17, 43, 70, 0.82) 56%, rgba(17, 43, 70, 0.66) 100%),
    var(--hero-backdrop, none);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.page-hero::before {
  width: 360px;
  height: 360px;
  top: -180px;
  left: -110px;
  border-radius: 50%;
  background: rgba(224, 182, 63, 0.16);
  filter: blur(12px);
}

.page-hero::after {
  width: 520px;
  height: 220px;
  right: -120px;
  bottom: -110px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(-12deg);
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero-simple-copy {
  max-width: 760px;
}

.page-hero-simple-copy h1,
.page-hero-simple-copy p {
  color: #fff;
}

.page-hero-simple-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.04;
}

.page-hero-simple-copy p {
  margin-top: 16px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

.page-hero-simple-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.page-hero .breadcrumbs {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.page-hero .meta-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.page-hero .meta-pill i {
  color: var(--c-secondary-2);
}

.page-hero-simple + .section {
  padding-top: 56px;
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 40px;
  background:
    linear-gradient(112deg, rgba(11, 33, 55, 0.96) 0%, rgba(20, 63, 105, 0.92) 52%, rgba(20, 63, 105, 0.66) 100%),
    var(--hero-backdrop, none);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.hero-showcase::before,
.hero-showcase::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.hero-showcase::before {
  width: 340px;
  height: 340px;
  top: -140px;
  left: -120px;
  border-radius: 50%;
  background: rgba(224, 182, 63, 0.2);
  filter: blur(10px);
}

.hero-showcase::after {
  width: 420px;
  height: 420px;
  right: -160px;
  bottom: -190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 28px;
  align-items: center;
  min-height: 520px;
}

.hero-showcase-copy {
  max-width: 620px;
}

.hero-showcase .breadcrumbs {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-showcase .pill {
  background: rgba(158, 212, 59, 0.18);
  color: #f2ffd5;
}

.hero-showcase-copy h1,
.hero-showcase-copy h2,
.hero-showcase-copy h3,
.hero-showcase-copy p,
.hero-showcase-copy .section-kicker,
.hero-showcase-copy .hero-point strong,
.hero-showcase-copy .hero-point span {
  color: #fff;
}

.hero-showcase-copy h1 {
  margin-top: 16px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.hero-showcase-copy p {
  margin-top: 16px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
}

.hero-highlight {
  color: #9ed43b;
}

.hero-showcase .section-kicker::before {
  background: linear-gradient(90deg, rgba(224, 182, 63, 0.9), rgba(224, 182, 63, 0.1));
}

.hero-showcase .tabs button,
.hero-showcase .tabs a {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-showcase .tabs .is-active,
.hero-showcase .tabs button.is-active {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
}

.hero-showcase .meta-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-showcase .eyebrow-row {
  color: rgba(255, 255, 255, 0.86);
}

.hero-showcase .eyebrow-row i,
.hero-showcase .meta-pill i {
  color: var(--c-secondary-2);
}

.hero-showcase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-showcase-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero-showcase-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-showcase-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-point {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-point i {
  margin-top: 3px;
  color: var(--c-secondary-2);
}

.hero-point span {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.74);
}

.hero-showcase-stage {
  position: relative;
  min-height: 470px;
  padding: 20px 0 20px 56px;
}

.hero-showcase-stage .photo-frame {
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stage-badge,
.hero-stage-card {
  position: absolute;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-stage-badge {
  top: 0;
  left: 0;
  max-width: 220px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stage-card {
  right: 0;
  bottom: 0;
  max-width: 250px;
  background: rgba(255, 248, 231, 0.96);
  color: var(--c-primary);
}

.hero-stage-badge strong,
.hero-stage-card strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.hero-stage-badge span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-stage-card span {
  color: var(--c-ink-soft);
}

.hero-showcase-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-showcase-stats .stat-chip {
  min-width: 150px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-showcase-stats .stat-chip strong,
.hero-showcase-stats .stat-chip span {
  color: #fff;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--c-primary-2);
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tabs button,
.tabs a {
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  color: var(--c-ink-soft);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.tabs .is-active,
.tabs button.is-active {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.form-card,
.sidebar-card {
  padding: 26px;
}

.field-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 600;
  color: var(--c-primary);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.helper-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hidden-mobile {
  display: block;
}

@media (max-width: 1024px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: var(--gutter);
    right: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(255, 250, 240, 0.98);
    border: 1px solid var(--c-line);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .main-nav .nav-cta {
    justify-content: center;
  }

  .media-card {
    grid-template-columns: 1fr;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase-grid,
  .hero-showcase-points {
    grid-template-columns: 1fr;
  }

  .hero-showcase-stage {
    min-height: 420px;
    padding: 28px 0 0;
  }
}

@media (max-width: 680px) {
  .announcement-inner,
  .footer-bottom {
    flex-direction: column;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hidden-mobile {
    display: none;
  }

  .hero-showcase {
    padding: 24px;
    border-radius: 30px;
  }

  .hero-showcase-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero-stage-badge,
  .hero-stage-card {
    position: static;
    max-width: none;
  }

  .hero-showcase-stage {
    display: grid;
    gap: 14px;
  }
}