:root {
  --bg: #f7fafc;
  --bg-soft: #eef3f8;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #4b5563;
  --line: #d6dee8;
  --brand: #0b4f8a;
  --brand-dark: #2a6f9b;
  --accent: #f4a528;
  --max: 1140px;
  --radius: 16px;
  --shadow: 0 14px 40px rgba(25, 54, 86, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
}

body {
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% -20%, #ffffff 0%, var(--bg) 42%), linear-gradient(180deg, #ffffff, var(--bg));
  line-height: 1.58;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(247, 250, 252, 0.86);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 700;
}

.brand-act2,
.brand-financial {
  font-size: 1.48rem;
  font-family: "Georgia", "Times New Roman", serif;
}

.brand-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0 -0.02rem;
  transform: translateY(0.06rem);
  font-size: 0;
  color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M14 40a18 18 0 1 1 36 0' fill='none' stroke='%232a6f9b' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M32 40 L45 30' fill='none' stroke='%23f4a528' stroke-width='4.6' stroke-linecap='round'/%3E%3Ccircle cx='32' cy='40' r='4.2' fill='%23f4a528'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.45rem 0.72rem;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: #083b66;
  text-decoration: none;
}

.btn-link {
  margin-left: 0.5rem;
  color: var(--brand-dark);
  background: transparent;
  border-radius: 10px;
  padding-left: 0;
  padding-right: 0;
}

.btn-link:hover {
  color: #083b66;
  text-decoration: underline;
}

.hero {
  padding: 4.1rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-copy {
  background: linear-gradient(155deg, #fff 0%, #f4f9ff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.kicker {
  display: inline-block;
  color: var(--brand);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

h1,
h2,
h3 {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.2;
  margin: 0 0 0.7rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow);
  border: 1px solid #d2deec;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(14, 30, 47, 0.72);
  color: #f3f8ff;
  border-radius: 14px;
  padding: 0.95rem 1rem;
}

.badge-panel p {
  color: #d4e4f7;
  margin: 0;
}

.trust-strip {
  padding: 0.6rem 0 1.8rem;
}

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

.trust-item {
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
}

.trust-item strong {
  display: block;
  color: var(--brand-dark);
  margin-bottom: 0.2rem;
}

section {
  padding: 2.8rem 0;
}

.section-soft-blue {
  background: linear-gradient(180deg, #fffaf2 0%, #fff7eb 100%);
}

.section-soft-mint {
  background: linear-gradient(180deg, #f2fbf8 0%, #eaf7f2 100%);
}

.section-soft-amber {
  background: linear-gradient(180deg, #fafbfd 0%, #f4f7fb 100%);
}

.section-soft-red {
  background: linear-gradient(180deg, #fff3f3 0%, #ffeaea 100%);
}

.section-soft-green {
  background: linear-gradient(180deg, #f2fbf4 0%, #e8f7ec 100%);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1rem;
}

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

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

.section-head {
  margin-bottom: 1.2rem;
}

.section-head p {
  max-width: 700px;
}

.card,
.prose {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 8px 24px rgba(16, 39, 62, 0.08);
}

.metric-number {
  display: inline-block;
  padding: 0.08rem 0.5rem;
  margin-right: 0.28rem;
  border-radius: 999px;
  background: #0b4f8a;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.card-image {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

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

.founder-link {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.founder-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 79, 138, 0.18);
}

.founder-photo {
  height: 220px;
  background: #eef3f8;
}

.founder-photo img {
  object-fit: contain;
  object-position: center;
}

.video-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.video-shell {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
}

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(20, 35, 45, 0.44), rgba(20, 35, 45, 0.6)),
    url("assets/images/hero.jpg") center / cover;
}

.video-play {
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.video-play:hover,
.video-play:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  outline: none;
}

.video-play-icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid currentColor;
}

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.list li {
  margin-bottom: 0.45rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: #eaf2fb;
}

.footer-grid {
  padding: 1.4rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-head {
  padding: 3.3rem 0 1.8rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.72rem 0.84rem;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.small {
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .footer-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 74px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

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