:root {
  --bg: #f4f8fd;
  --bg-soft: #ecf3fb;
  --panel: rgba(255, 255, 255, 0.94);
  --line: rgba(20, 52, 90, 0.16);
  --text: #102339;
  --muted: #59728d;
  --accent: #0b74ff;
  --accent-2: #00b78b;
  --shadow: 0 18px 48px rgba(24, 48, 78, 0.12);
  --radius: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 116, 255, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(0, 183, 139, 0.1), transparent 26%),
    linear-gradient(180deg, #f6f9fe 0%, #edf4fb 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.shell {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(247, 251, 255, 0.86);
  border-bottom: 1px solid var(--line);
  transition: transform 0.22s ease;
}

.topbar.is-hidden {
  transform: translateY(-110%);
}

.topbar-inner {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.72rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.64rem;
  color: var(--text);
  min-width: 0;
  margin-right: auto;
}

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

.brand strong {
  letter-spacing: -0.01em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.links {
  display: none;
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  width: min(360px, calc(100vw - 2rem));
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(247, 251, 255, 0.97);
  box-shadow: 0 20px 38px rgba(19, 46, 78, 0.16);
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  z-index: 25;
}

.links.open {
  display: flex;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  margin-left: auto;
}

.links a {
  color: var(--muted);
  font-size: 0.84rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.58rem 0.7rem;
  background: rgba(255, 255, 255, 0.9);
}

.links a:hover {
  color: var(--text);
}

.links a.cta {
  border-color: rgba(11, 116, 255, 0.3);
  background: rgba(11, 116, 255, 0.11);
  color: #0b5ecf;
}

.menu-toggle-page {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.lang-toggle-page {
  border: 1px solid rgba(11, 116, 255, 0.3);
  background: rgba(11, 116, 255, 0.09);
  color: #0b5ecf;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.48rem 0.66rem;
  cursor: pointer;
}

.lang-toggle-page:hover {
  background: rgba(11, 116, 255, 0.15);
}

main {
  padding: 2.4rem 0 4rem;
}

.hero {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.kicker {
  margin: 0 0 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #2e547a;
  font-size: 0.76rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  max-width: 72ch;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.68rem 0.94rem;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.92rem;
}

.btn.primary {
  border: none;
  color: #f2fbff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.btn.ghost {
  background: rgba(12, 56, 105, 0.06);
}

.section {
  margin-top: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.2vw, 1.4rem);
}

.section h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.16;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.93);
  padding: 0.95rem;
}

.card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.founder-social-row {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.founder-social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  border: 1px solid var(--line);
  background: rgba(11, 116, 255, 0.08);
  color: #0f4f96;
  font-size: 0.76rem;
  font-weight: 600;
  gap: 0.38rem;
}

.founder-social-row .social-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.founder-social-row .social-icon svg {
  width: 16px;
  height: 16px;
}

.founder-social-row a:hover {
  border-color: rgba(11, 116, 255, 0.36);
  background: rgba(11, 116, 255, 0.14);
}

.founders-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.founder-card p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.founder-shot {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.7rem;
}

.founder-shot.abhi { object-position: center 40%; }
.founder-shot.athan { object-position: center 32%; }
.founder-shot.chris { object-position: center 36%; }
.founder-shot.jacob { object-position: center 42%; }

.card ul {
  margin: 0.62rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
  font-size: 0.92rem;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 0.72rem 0.58rem;
  text-align: left;
  vertical-align: top;
}

.table th {
  color: #2f567c;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
  color: var(--muted);
  font-size: 0.84rem;
}

@media (max-width: 820px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    flex-direction: row;
    align-items: center;
    padding: 0.6rem 0;
    flex-wrap: nowrap;
  }

  .topbar-inner {
    padding: 0.55rem 0;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
