:root {
  --bg: #f5f8ff;
  --text: #10243d;
  --muted: #4d627f;
  --primary: #0554f2;
  --secondary: #00a7b1;
  --accent: #f96538;
  --surface: rgba(255, 255, 255, 0.78);
  --line: rgba(16, 36, 61, 0.1);
  --shadow: 0 18px 42px rgba(8, 29, 54, 0.15);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, #d9ecff 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, #d9fffc 0%, transparent 35%),
    linear-gradient(150deg, #f5f8ff 0%, #f9fcff 48%, #fdfaf4 100%);
  line-height: 1.65;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(56px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
  animation: float 14s ease-in-out infinite alternate;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: #8fd8ff;
  top: 8%;
  right: 7%;
}

.orb-2 {
  width: 240px;
  height: 240px;
  background: #ffbf9c;
  bottom: 10%;
  left: 7%;
  animation-delay: -5s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(245, 248, 255, 0.82);
  border-bottom: 1px solid rgba(16, 36, 61, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
}

.logo {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a,
.policy-links a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.policy-links a:hover {
  color: var(--primary);
}

.section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 0.7s ease forwards;
}

.section:nth-of-type(2) { animation-delay: 0.06s; }
.section:nth-of-type(3) { animation-delay: 0.12s; }
.section:nth-of-type(4) { animation-delay: 0.18s; }
.section:nth-of-type(5) { animation-delay: 0.24s; }
.section:nth-of-type(6) { animation-delay: 0.3s; }
.section:nth-of-type(7) { animation-delay: 0.36s; }
.section:nth-of-type(8) { animation-delay: 0.42s; }

.hero {
  padding-top: clamp(70px, 11vw, 118px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.1rem, 6vw, 4.25rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

h3 {
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.lead,
.section p {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--primary), #297dff);
  color: #fff;
  box-shadow: 0 12px 26px rgba(5, 84, 242, 0.28);
}

.btn-ghost {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(5, 84, 242, 0.2);
}

.section-heading {
  margin-bottom: 16px;
}

.card-section,
.vision,
.contact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding-left: clamp(20px, 4vw, 36px);
  padding-right: clamp(20px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
}

.card p {
  margin: 10px 0 0;
}

.card.compact h3 {
  font-size: 1rem;
}

.role {
  color: var(--secondary);
  font-weight: 700;
}

.contact-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.contact-list span {
  color: var(--muted);
  min-width: 130px;
}

.contact-list a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  margin-top: 32px;
  padding: 24px clamp(18px, 4vw, 56px) 40px;
  border-top: 1px solid rgba(16, 36, 61, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.policy-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@keyframes float {
  from { transform: translateY(-8px) scale(1); }
  to { transform: translateY(10px) scale(1.06); }
}

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

@media (max-width: 980px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .site-header {
    position: static;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 12px;
  }

  .cards-2,
  .cards-3,
  .cards-4 {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
