:root {
  --bg: #07111f;
  --bg-soft: #0e1d31;
  --surface: rgba(14, 29, 49, 0.72);
  --surface-strong: #12253f;
  --text: #f4f8fc;
  --muted: #b5c4d7;
  --heading: #ffffff;
  --line: rgba(174, 242, 189, 0.18);
  --accent: #b8f58f;
  --accent-strong: #79d06f;
  --accent-deep: #133d27;
  --ink: #102338;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(120, 208, 111, 0.22), transparent 30%),
    linear-gradient(180deg, #04101d 0%, #091628 48%, #e8f1ec 48%, #edf4f1 100%);
}

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

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

p,
li {
  color: var(--muted);
  line-height: 1.8;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--heading);
  font-family: "Outfit", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.45rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(4, 16, 29, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

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

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-mark {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.88rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  color: #dfeaf5;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: white;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5.5rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
}

.hero::before {
  top: 8%;
  right: 10%;
  width: 320px;
  height: 320px;
  background: rgba(184, 245, 143, 0.12);
}

.hero::after {
  bottom: 0;
  left: -40px;
  width: 260px;
  height: 260px;
  background: rgba(39, 124, 211, 0.16);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-text {
  max-width: 62ch;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #06111c;
  background: linear-gradient(135deg, var(--accent) 0%, #dbffd2 100%);
  box-shadow: 0 16px 30px rgba(184, 245, 143, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.1rem;
}

.hero-points li::marker {
  color: var(--accent);
}

.hero-card {
  position: relative;
  min-height: 620px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 50% 16%, rgba(184, 245, 143, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(6, 17, 28, 0.8));
  box-shadow: var(--shadow);
}

.hero-logo {
  width: min(360px, 78%);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 10px 22px rgba(19, 61, 39, 0.35));
}

.hero-owl {
  width: min(470px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-light {
  color: var(--ink);
}

.section-light h2,
.section-light h3 {
  color: #12243a;
}

.section-light p,
.section-light li {
  color: #38516b;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.info-card,
.story-panel,
.company-panel,
.contact-card,
.policy-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 245, 0.96));
  border: 1px solid rgba(18, 37, 63, 0.06);
}

.card-kicker,
.meta-label,
.policy-date {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-kicker,
.meta-label {
  color: #2d6a4f;
}

.card-alt {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 35, 56, 0.08);
}

.accent-card {
  background: linear-gradient(160deg, #14311f 0%, #18392b 55%, #0e2234 100%);
}

.accent-card h3,
.accent-card p {
  color: #e8fff0;
}

.accent-card .card-kicker,
.accent-card .card-alt {
  color: #b8f58f;
  border-top-color: rgba(184, 245, 143, 0.18);
}

.story-section {
  background: linear-gradient(180deg, #0b1728 0%, #0b1728 100%);
}

.story-grid,
.contact-grid,
.company-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.story-panel {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.check-list {
  display: grid;
  gap: 0.85rem;
}

.check-list li::marker {
  color: var(--accent);
}

.company-panel {
  padding: 2.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 244, 0.98));
  border: 1px solid rgba(18, 37, 63, 0.06);
}

.company-meta {
  display: grid;
  gap: 1.5rem;
}

.cn-name {
  margin-top: 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-section {
  padding-bottom: 6.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  min-height: 230px;
  padding: 2rem;
  color: white;
  background:
    radial-gradient(circle at top right, rgba(184, 245, 143, 0.22), transparent 35%),
    linear-gradient(135deg, #102338 0%, #14311f 100%);
  border: 1px solid rgba(184, 245, 143, 0.15);
}

.contact-card strong {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.contact-arrow {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  padding: 2.2rem 0 3rem;
  background: #081421;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-script {
  width: 210px;
  margin-bottom: 0.6rem;
}

.footer-links {
  display: flex;
  gap: 1.1rem;
  color: #dbe8f4;
}

.policy-page {
  background:
    radial-gradient(circle at top center, rgba(120, 208, 111, 0.18), transparent 28%),
    linear-gradient(180deg, #04101d 0%, #081523 18%, #eef4f0 18%, #eef4f0 100%);
}

.policy-layout {
  color: var(--ink);
}

.policy-layout h1,
.policy-layout h2,
.policy-layout h3 {
  color: #12243a;
}

.policy-layout p,
.policy-layout li {
  color: #324b64;
}

.policy-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.policy-intro {
  max-width: 62ch;
}

.policy-toggle {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(18, 37, 63, 0.08);
}

.lang-button {
  min-height: 46px;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  color: #17334c;
  background: transparent;
  cursor: pointer;
}

.lang-button.active {
  color: white;
  background: #17334c;
}

.policy-columns {
  display: grid;
}

.policy-card {
  display: none;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 37, 63, 0.08);
}

.policy-card.active {
  display: block;
}

.policy-card h3 {
  margin-top: 2rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .story-grid,
  .contact-grid,
  .company-panel {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .policy-top,
  .footer-wrap {
    flex-direction: column;
    align-items: start;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(4, 16, 29, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .brand-sub {
    display: none;
  }

  .hero,
  .section {
    padding: 4rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card,
  .info-card,
  .story-panel,
  .company-panel,
  .contact-card,
  .policy-card {
    padding: 1.35rem;
    border-radius: 22px;
  }

  .contact-card strong {
    font-size: 1.7rem;
  }
}
