:root {
  --bg: #f5fbff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --line: rgba(46, 155, 255, 0.18);
  --line-strong: rgba(20, 120, 212, 0.22);
  --text: #24303e;
  --muted: #667284;
  --muted-strong: #4f5c6e;
  --brand: #2e9bff;
  --brand-dark: #1478d4;
  --brand-soft: #eef6ff;
  --accent: #f05e59;
  --shadow: 0 28px 70px rgba(16, 72, 127, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(46, 155, 255, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(240, 94, 89, 0.08), transparent 20%),
    linear-gradient(180deg, #f9fdff 0%, #eef7ff 52%, #ffffff 100%);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(36, 48, 62, 0.06);
}

.brand img,
.footer-logo {
  height: 18px;
  width: auto;
}

.topnav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topnav a,
.footer-links a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted-strong);
}

.topnav a:hover,
.footer-links a:hover,
.text-link:hover,
.contact-link:hover {
  color: var(--brand-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
  padding: clamp(40px, 7vw, 72px) 0 40px;
}

.hero > *,
.about-section > *,
.contact-card > *,
.summary-strip > *,
.feature-grid > * {
  min-width: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 40px 0 auto;
  height: 420px;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(46, 155, 255, 0.13), rgba(255, 255, 255, 0.45)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.75);
  z-index: -1;
}

.hero-copy {
  padding: 20px 8px 20px 0;
}

.eyebrow,
.panel-kicker,
.mini-label,
.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.eyebrow::before,
.panel-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 0 0 6px rgba(46, 155, 255, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  margin-top: 20px;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 1.02;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3.3rem);
  line-height: 1.1;
  overflow-wrap: break-word;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.about-copy p,
.about-panel p,
.feature-card p,
.contact-note,
.footer-copy,
.policy-hero p,
.policy-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: 0 16px 32px rgba(20, 120, 212, 0.28);
}

.button-secondary {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(46, 155, 255, 0.18);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.summary-strip article,
.feature-card,
.about-panel,
.contact-card,
.policy-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-points li {
  min-height: 100%;
  padding: 18px 18px 18px 20px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--muted-strong);
}

.hero-visual {
  position: relative;
  padding: 26px 0 26px 26px;
}

.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
  box-shadow: var(--shadow);
}

.hero-card-main {
  padding: 20px;
}

.hero-card-main img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.hero-card-floating {
  width: 100%;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line-strong);
}

.hero-card-floating strong {
  display: block;
  margin-top: 8px;
  font-size: 1.12rem;
  line-height: 1.4;
}

.hero-card-floating span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 14px 0 0;
}

.summary-strip article {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.summary-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 800;
}

.summary-strip span {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: clamp(64px, 9vw, 108px) 0 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  margin-top: 18px;
}

.section-heading p {
  margin: 18px 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.feature-illustration {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(46, 155, 255, 0.09), rgba(255, 255, 255, 0.85)),
    #ffffff;
}

.feature-card h3 {
  margin-top: 22px;
}

.feature-card p {
  margin: 14px 0 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.about-copy h2 {
  margin-top: 18px;
  max-width: 14ch;
}

.about-copy p {
  margin: 18px 0 0;
}

.about-panel,
.contact-card,
.policy-card {
  border-radius: var(--radius-xl);
}

.about-panel {
  padding: 28px;
}

.about-panel h3 {
  margin-top: 12px;
}

.about-panel p,
.policy-card p {
  margin: 16px 0 0;
}

.text-link,
.contact-link {
  font-weight: 800;
  color: var(--brand-dark);
}

.text-link {
  display: inline-block;
  margin-top: 20px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding: 18px;
}

.contact-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(46, 155, 255, 0.06), rgba(255, 255, 255, 0.7));
  border: 1px solid var(--line);
  min-height: 100%;
}

.contact-card .contact-label {
  display: inline-flex;
  margin: 0;
}

.contact-card .contact-link {
  font-size: 1.15rem;
  line-height: 1.4;
  word-break: break-word;
}

.contact-card .contact-note {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 56px 0 36px;
  margin-top: 80px;
  border-top: 1px solid rgba(36, 48, 62, 0.08);
}

.footer-copy {
  max-width: 40ch;
  margin: 14px 0 0;
}

.policy-body {
  min-height: 100vh;
}

.policy-layout {
  padding: 64px 0 0;
}

.policy-hero {
  max-width: 820px;
}

.policy-hero h1 {
  max-width: 11ch;
}

.policy-hero p {
  margin: 24px 0 0;
}

.policy-card {
  margin-top: 30px;
  padding: 32px;
}

.policy-card h2 {
  margin-top: 28px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.policy-card h2:first-child {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .hero,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding-left: 0;
  }
}

@media (max-width: 960px) {
  .feature-grid,
  .summary-strip,
  .contact-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    border-radius: 24px;
    padding: 12px 16px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .topnav {
    gap: 12px 16px;
    width: 100%;
    justify-content: flex-start;
  }

  .topnav a,
  .footer-links a {
    font-size: 0.9rem;
  }

  .footer {
    padding: 36px 18px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .hero::before {
    inset: 22px 0 auto;
    height: 100%;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-text,
  .section-heading p,
  .about-copy p,
  .about-panel p,
  .feature-card p,
  .contact-note,
  .footer-copy,
  .policy-hero p,
  .policy-card p {
    font-size: 1rem;
  }

  .feature-card,
  .about-panel,
  .contact-card,
  .policy-card {
    padding: 22px;
  }

  .feature-illustration {
    min-height: 200px;
  }

  .footer {
    margin-top: 56px;
  }
}

@media (max-width: 600px) {
  .feature-grid,
  .summary-strip,
  .contact-card,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-card-main img {
    max-height: 420px;
  }

  .policy-layout {
    padding-top: 40px;
  }

  .contact-link {
    font-size: 1.05rem;
    word-break: break-word;
  }
}

@media (max-width: 360px) {
  .site-shell {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .topbar,
  .footer,
  .feature-card,
  .about-panel,
  .contact-card,
  .policy-card {
    padding: 16px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
  }

  .hero-card-main,
  .hero-card-floating {
    padding: 16px;
  }
}
