:root {
  --ink: #0f1724;
  --ink-soft: #49566b;
  --paper: #f5f1e8;
  --surface: #ffffff;
  --surface-soft: #faf7f1;
  --line: #e3d8c4;
  --brand: #0f3a63;
  --brand-deep: #0a2642;
  --gold: #c99749;
  --gold-deep: #9e7435;
  --muted: #5b6a80;
  --shadow-soft: 0 14px 34px rgba(9, 28, 50, 0.1);
  --shadow-strong: 0 24px 52px rgba(9, 28, 50, 0.18);
  --radius: 22px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.58;
  background:
    radial-gradient(circle at 12% -15%, rgba(201, 151, 73, 0.24), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(15, 58, 99, 0.08), transparent 26%),
    var(--paper);
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.84rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn.white {
  color: #101218;
  background: linear-gradient(140deg, #ffffff, #f4f6f8);
  border-color: #d9dfe8;
  box-shadow: var(--shadow-soft);
}

.btn-amber {
  color: #1f1610;
  background: linear-gradient(140deg, #e4b96d, var(--gold));
  border-color: #bd8b41;
  box-shadow: 0 12px 28px rgba(168, 118, 48, 0.36);
}

.btn-amber:hover {
  background: linear-gradient(140deg, #e5bd77, #bc8940);
}

.btn-blue {
  color: #f2f8ff;
  background: linear-gradient(140deg, #184a7a, var(--brand-deep));
  border-color: #1b507f;
  box-shadow: 0 14px 28px rgba(10, 38, 66, 0.36);
}

.btn-blue:hover {
  background: linear-gradient(140deg, #20558a, #0e2f51);
}

header.sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 58, 99, 0.12);
  backdrop-filter: saturate(150%) blur(12px);
  background: rgba(245, 241, 232, 0.82);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 6px 9px rgba(7, 31, 54, 0.26));
}

.brand span {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav .links {
  display: none;
  gap: 20px;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav .links a {
  position: relative;
}

.nav .links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav .links a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(94vh, 860px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 98px 0 84px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 41, 0.84), rgba(8, 24, 41, 0.46) 48%, rgba(245, 241, 232, 0.82) 100%),
    url("images/hero-bg.jpg") center / cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -4% -170px;
  height: 340px;
  background: radial-gradient(ellipse at center, rgba(216, 171, 100, 0.38), transparent 65%);
  z-index: -1;
}

.hero h1 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.93;
  text-shadow: 0 8px 20px rgba(6, 18, 30, 0.38);
  text-wrap: balance;
  animation: reveal-up 0.7s ease both;
}

.hero p {
  max-width: 860px;
  margin: 18px auto 0;
  color: #e7eff9;
  font-size: clamp(1rem, 1.9vw, 1.24rem);
  animation: reveal-up 0.8s ease 0.08s both;
}

.hero .cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  animation: reveal-up 0.8s ease 0.16s both;
}

.stats {
  margin: 38px auto 0;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  animation: reveal-up 0.8s ease 0.22s both;
}

.stat {
  padding: 18px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.86));
  box-shadow: 0 16px 36px rgba(8, 24, 41, 0.22);
  backdrop-filter: blur(8px);
}

.stat .num {
  color: var(--brand-deep);
  font-size: clamp(1.56rem, 2.2vw, 2rem);
  font-weight: 700;
}

.stat .lbl {
  margin-top: 5px;
  color: #5d6b81;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bridge {
  padding: 98px 0;
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.92), rgba(241, 234, 221, 0.88));
  border-top: 1px solid rgba(15, 58, 99, 0.08);
  border-bottom: 1px solid rgba(15, 58, 99, 0.08);
}

.bridge h2,
.section-head h2,
.founder-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 0.93;
}

.bridge p {
  margin: 18px auto 0;
  max-width: 820px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

section.pad {
  padding: 94px 0;
}

.founder {
  padding-top: 76px;
}

.founder-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(15, 58, 99, 0.09);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(251, 248, 242, 0.94));
  box-shadow: var(--shadow-soft);
}

.founder-photo {
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
  max-width: 360px;
  justify-self: center;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.founder-copy {
  padding: 8px 6px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-deep);
}

.founder-copy p {
  margin: 10px 0 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-soft {
  background: linear-gradient(180deg, #f3ece1, #f8f3ea 36%, #f5f1e8);
}

.section-head {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

.section-head p {
  margin: 8px 0 0;
  max-width: 710px;
  color: var(--ink-soft);
}

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

.card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(15, 58, 99, 0.09);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.card img {
  width: 100%;
  height: 236px;
  object-fit: cover;
}

.card .body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .body h3 {
  margin: 0;
  font-size: 1.78rem;
  line-height: 0.98;
}

.pill {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
}

.pill.amber {
  color: var(--gold-deep);
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.card ul li {
  margin: 4px 0;
}

.card a {
  align-self: flex-start;
  margin-top: 2px;
}

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

.import {
  position: relative;
  color: #f2f7ff;
  background:
    radial-gradient(circle at 6% 12%, rgba(201, 151, 73, 0.25), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(201, 151, 73, 0.18), transparent 30%),
    linear-gradient(145deg, #0d2d4f, #0d395f 50%, #0b2741 100%);
}

.import::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 28%);
  pointer-events: none;
}

.import .wrap {
  position: relative;
}

.section-head-light p {
  color: rgba(231, 241, 255, 0.92);
}

.import-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.import .panel {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(231, 241, 255, 0.24);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  box-shadow: 0 20px 46px rgba(4, 15, 26, 0.36);
  backdrop-filter: blur(6px);
}

.import ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
}

.import h3 {
  margin: 0;
  font-size: 1.86rem;
}

.import .panel p {
  margin: 8px 0 12px;
  color: rgba(232, 241, 255, 0.92);
}

.import form {
  display: grid;
  gap: 9px;
}

.import input,
.import textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(216, 232, 255, 0.34);
  background: rgba(246, 250, 255, 0.98);
  color: #0f1f33;
  outline: none;
}

.import input:focus,
.import textarea:focus {
  border-color: #e3b66f;
  box-shadow: 0 0 0 3px rgba(201, 151, 73, 0.28);
}

.import button {
  width: 100%;
  border: 0;
  margin-top: 2px;
}

.contact {
  padding-bottom: 38px;
}

.account-cta {
  margin-top: 24px;
  border-radius: 18px;
  border: 1px solid rgba(15, 58, 99, 0.09);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.account-cta-copy {
  max-width: 64ch;
}

.account-cta-copy h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1;
}

.account-cta-copy p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.btn-account {
  position: relative;
  overflow: hidden;
  color: #f6f8fc;
  background: linear-gradient(135deg, #1f5f99, #0d2d4f 55%, #0a2642);
  border-color: #215686;
  box-shadow: 0 16px 28px rgba(9, 35, 59, 0.34);
}

.btn-account::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -42%;
  width: 40%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: transform 0.45s ease;
}

.btn-account:hover::after {
  transform: translateX(250%) rotate(18deg);
}

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

.cols > div {
  border-radius: 18px;
  border: 1px solid rgba(15, 58, 99, 0.09);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.cols h3,
.cols h4 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.cols p,
.cols ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.cols ul li {
  margin-top: 7px;
}

footer {
  margin-top: 30px;
  border-top: 1px solid rgba(15, 58, 99, 0.1);
}

.footer-inner {
  padding: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #5f6f84;
  font-size: 0.88rem;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media (max-width: 1040px) {
  .grid,
  .cols,
  .import-grid {
    grid-template-columns: 1fr 1fr;
  }

  .founder-wrap {
    grid-template-columns: 1fr;
  }

  .founder-photo,
  .founder-photo img {
    min-height: 340px;
  }

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

@media (max-width: 780px) {
  .nav .links,
  .nav .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 72px;
  }

  .stats {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .grid,
  .cols,
  .import-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 14px;
  }

  .founder {
    padding-top: 62px;
  }

  .founder-photo,
  .founder-photo img {
    min-height: 300px;
  }

  .founder-photo {
    max-width: 100%;
  }

  .account-cta {
    padding: 18px;
    gap: 14px;
    align-items: stretch;
  }

  .btn-account {
    width: 100%;
  }
}

@media (min-width: 820px) {
  .nav .links {
    display: flex;
  }
}
