:root {
  --bg: #fafafa;
  --panel: #ffffff;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --faint: #8a8a8a;
  --maroon: #8b1010;
  --maroon-d: #6e0d0d;
  --gold: #c5a059;
  --gold-soft: #eedfc2;
  --line: #ececec;
  --line2: #e7e7e7;
  --alt: #f7f7f7;
  --wrap: 1160px;
  --sans: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.4em;
}
h1 {
  font-size: clamp(28px, 4vw, 44px);
}
h2 {
  font-size: clamp(23px, 2.6vw, 32px);
}
h3 {
  font-size: 18px;
}
p {
  margin: 0 0 1rem;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}
.narrow {
  max-width: 820px;
}
.center {
  text-align: center;
  margin-bottom: 26px;
}
.center-t {
  text-align: center;
}
.mt {
  margin-top: 22px;
}
img {
  max-width: 100%;
}

/* eyebrow + rule */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.rule {
  width: 54px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0;
}
.center .rule,
.center-t .rule {
  margin-left: auto;
  margin-right: auto;
}
.note {
  font-size: 12.5px;
  color: var(--faint);
  margin-top: 14px;
  font-style: italic;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 30px;
  border: 1px solid transparent;
  transition: 0.18s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--maroon);
  color: #fff;
}
.btn-primary:hover {
  background: var(--maroon-d);
}
.btn-outline {
  background: transparent;
  color: var(--maroon);
  border-color: var(--gold-soft);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: #fff;
}
.btn.sm {
  padding: 9px 20px;
}
.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--line);
}
.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
}
.brand-main {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--maroon);
}
.brand-main.light {
  color: var(--maroon);
}
.brand-sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--gold);
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-link {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
}
.nav-link.on,
.nav-link:hover {
  color: var(--ink);
}
.nav-link.on {
  border-bottom: 2px solid var(--maroon);
  padding-bottom: 4px;
}
.nav-item {
  position: relative;
}
.nav-link .drop-caret {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
  margin-left: 2px;
}
.nav-link .nav-calc-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 901px) {
  .has-drop:hover .drop-caret {
    transform: rotate(180deg);
  }
}
.has-drop .drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  min-width: 210px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: 0.16s;
  display: flex;
  flex-direction: column;
}
@media (min-width: 901px) {
  .has-drop:hover .drop {
    opacity: 1;
    visibility: visible;
  }
}
.drop a {
  font-size: 13.5px;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 8px;
}
.drop a:hover {
  background: var(--alt);
  color: var(--maroon);
}
.hamb {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  line-height: 1;
}
.hamb .ic {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hamb .hamb-close {
  display: none;
}
body.nav-open .hamb .hamb-open {
  display: none;
}
body.nav-open .hamb .hamb-close {
  display: block;
}

/* hero */
.hero {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  padding: 64px 28px 54px;
}
.hero-split .hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
}
.hero-center .hero-grid {
  grid-template-columns: 1fr;
  max-width: 840px;
  text-align: center;
}
.hero-center .rule {
  margin-left: auto;
  margin-right: auto;
}
.hero-center .btn-row {
  justify-content: center;
}
.hero h1 {
  margin-bottom: 0;
}
.lede {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 6px;
}
.hero-micro {
  font-size: 13.5px;
  color: var(--faint);
  margin-top: -4px;
}
.hero-visual {
  position: relative;
  height: 300px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--maroon);
}
.hv-cap {
  position: absolute;
  left: 24px;
  bottom: 22px;
}
.hv-num {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.hv-sub {
  font-size: 10.5px;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-top: 5px;
}
.ph-note {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 10px;
  color: #b9b9b9;
  letter-spacing: 0.3px;
}

/* stat strip */
.stat-strip {
  background: var(--alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 14px;
  padding: 24px 28px;
}
.stat {
  text-align: center;
  min-width: 130px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--maroon);
}
.stat-lab {
  font-size: 11.5px;
  color: var(--faint);
  margin-top: 3px;
}

/* sections */
.section {
  padding: 64px 0;
  background: var(--panel);
}
.section.alt {
  background: var(--alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section .eyebrow {
}
.highlight {
  background: var(--panel);
}
.big-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}

/* founder */
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.founder-photo {
  position: relative;
  height: 340px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  color: #d8d8d8;
}
.founder-copy .role {
  color: var(--maroon);
  font-weight: 500;
  margin-top: -8px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}
.chip {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--gold-soft);
  border-radius: 20px;
  padding: 6px 14px;
}
.chip-lg {
  font-size: 13px;
  padding: 9px 16px;
}

/* cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.card-grid.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  transition: 0.18s;
  display: block;
}
.section.alt .card {
  background: #fff;
}
.card-link:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}
.card-ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--maroon);
  margin-bottom: 16px;
}
.card h3 {
  font-family: var(--serif);
  margin-bottom: 6px;
}
.card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--maroon);
  margin-top: 14px;
}

/* checklist */
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px auto;
  max-width: 640px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.check-list .ic {
  color: var(--gold);
  font-size: 20px;
  margin-top: 2px;
}
.close {
  font-weight: 500;
  margin-top: 20px;
}

/* steps */
.steps {
  display: grid;
  gap: 16px;
  margin-top: 10px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.step-n {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  font-family: var(--serif);
}
.step p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* tick list */
.tick-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 12px;
}
.tick-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.tick-list .ic {
  color: var(--maroon);
  font-size: 19px;
  margin-top: 2px;
}

/* faq */
.faqs {
  margin-top: 10px;
}
.faq {
  border-bottom: 1px solid var(--line2);
  background: transparent;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 2px;
  font-weight: 500;
  font-size: 15.5px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary .ic {
  color: var(--gold);
  transition: 0.2s;
  font-size: 20px;
}
.faq[open] summary .ic {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 2px 20px;
  color: var(--muted);
  font-size: 14.5px;
}

/* comparison */
.cmp {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}
.cmp-2 {
  grid-template-columns: 1fr 1fr;
}
.cmp-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cmp-col {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 14px 14px;
  padding: 24px 22px;
}
.cmp-col h3 {
  color: var(--maroon);
}
.cmp-col p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

/* quotes */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.quote {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  margin: 0;
}
.quote .ic {
  color: var(--gold);
  font-size: 26px;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 10px 0 16px;
}
.quote figcaption {
  font-size: 12.5px;
  color: var(--faint);
}

/* cta band */
.cta-band {
  background: var(--alt);
  border-top: 1px solid var(--line);
  padding: 60px 0;
}
.cta-band .rule {
  margin: 0 auto 18px;
}
.cta-band h2 {
  margin-bottom: 8px;
}
.cta-band p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 24px;
}

/* footer */
.site-footer {
  background: #161616;
  color: #cfcfcf;
  padding: 56px 0 26px;
  margin-top: 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}
.site-footer .brand-main {
  color: #fff;
}
.site-footer .brand-sub {
  color: var(--gold);
}
.amfi {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin: 14px 0 10px;
}
.foot-tag {
  font-size: 13px;
  color: #aeaeae;
  line-height: 1.6;
}
.foot-contact {
  font-size: 13px;
  color: #9a9a9a;
}
.foot-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.foot-col a {
  display: block;
  font-size: 13px;
  color: #b4b4b4;
  padding: 5px 0;
}
.foot-col a:hover {
  color: var(--gold);
}
.foot-legal {
  border-top: 1px solid #2a2a2a;
  margin-top: 36px;
  padding-top: 20px;
}
.foot-legal p {
  font-size: 11px;
  color: #7e7e7e;
  line-height: 1.6;
}
.foot-legal .cp {
  margin-top: 8px;
}

/* responsive */
@media (max-width: 900px) {
  .hero-split .hero-grid,
  .founder-grid,
  .cmp-2,
  .cmp-3 {
    grid-template-columns: 1fr;
  }
  .founder-photo {
    height: 240px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 44px 24px 40px;
  }
}

.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}
@media (max-width: 560px) {
  .brand-logo {
    height: 38px;
  }
}
.founder-photo {
  overflow: hidden;
  padding: 0;
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.page {
  display: none;
}
.page.active {
  display: block;
  animation: pageIn 0.55s cubic-bezier(0.2, 0.65, 0.2, 1);
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  top: -25%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(197, 160, 89, 0.12),
    transparent 62%
  );
  pointer-events: none;
}
.hero:after {
  content: "";
  position: absolute;
  bottom: -32%;
  left: -12%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(139, 16, 16, 0.06), transparent 62%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.ic {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.14em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.card-arrow {
  transition: gap 0.2s;
}
.card-link:hover .card-arrow {
  gap: 10px;
}
.btn {
  transition:
    background 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(139, 16, 16, 0.22);
}
.site-header {
  transition: box-shadow 0.25s;
}
.site-header.scrolled {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in .stagger > * {
  opacity: 1;
  transform: none;
}
.reveal.in .stagger > *:nth-child(1) {
  transition-delay: 0.04s;
}
.reveal.in .stagger > *:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal.in .stagger > *:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal.in .stagger > *:nth-child(4) {
  transition-delay: 0.22s;
}
.reveal.in .stagger > *:nth-child(5) {
  transition-delay: 0.28s;
}
.reveal.in .stagger > *:nth-child(6) {
  transition-delay: 0.34s;
}
.reveal.in .stagger > *:nth-child(7) {
  transition-delay: 0.4s;
}
.reveal.in .stagger > *:nth-child(8) {
  transition-delay: 0.46s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-copy > * {
  animation: fadeUp 0.85s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}
.hero-copy > *:nth-child(2) {
  animation-delay: 0.07s;
}
.hero-copy > *:nth-child(3) {
  animation-delay: 0.14s;
}
.hero-copy > *:nth-child(4) {
  animation-delay: 0.21s;
}
.hero-copy > *:nth-child(5) {
  animation-delay: 0.28s;
}
.hero-copy > *:nth-child(6) {
  animation-delay: 0.35s;
}
.hero-visual {
  animation: fadeUp 1s 0.22s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}
.hv-badge {
  animation: pulse 3.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.card-ic .ic,
.cmp-col .ic {
  transition: transform 0.25s;
}
.card-link:hover .card-ic .ic {
  transform: scale(1.12);
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-copy > *,
  .hero-visual {
    animation: none !important;
  }
}

/* header: centered nav + actions */
.head-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  height: 70px;
}
.navwrap {
  display: contents;
}
.nav {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: center;
}
.head-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
}
.nav-contact {
  font-size: 15px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-contact:hover {
  color: var(--maroon);
}
.nav-contact .ic {
  color: var(--gold);
}
.btn.sm .ic {
  width: 1em;
  height: 1em;
}
@media (max-width: 900px) {
  .head-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .hamb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .navwrap {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-160%);
    transition: transform 0.28s ease;
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.1);
    gap: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    box-sizing: border-box;
    z-index: 999;
  }
  body.nav-open .navwrap {
    transform: translateY(0);
  }
  .nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
    justify-content: flex-start;
  }
  .nav-item {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .nav-link {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 4px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-align: left;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: color 0.15s ease;
  }
  .nav-link:hover {
    color: var(--maroon);
  }
  .nav-link.on {
    border-bottom: 1px solid var(--maroon);
    color: var(--maroon);
    padding-bottom: 14px;
  }
  .nav-item.has-drop > .nav-link {
    cursor: pointer;
  }
  .nav-item.has-drop > .nav-link .nav-calc-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .nav-item.has-drop > .nav-link .drop-caret {
    width: 16px;
    height: 16px;
    stroke-width: 2.2;
    transition: transform 0.25s ease;
  }
  .has-drop .drop {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 8px;
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 6px 8px;
    margin: 4px 0 10px;
    background: var(--alt);
    border-left: 3px solid var(--maroon);
    flex-direction: column;
  }
  .has-drop:hover .drop {
    display: none;
  }
  .has-drop.open .drop {
    display: flex;
  }
  .has-drop.open > .nav-link {
    color: var(--maroon);
  }
  .has-drop.open > .nav-link .drop-caret {
    transform: rotate(180deg);
  }
  .drop a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    color: var(--muted);
    padding: 9px 12px;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .drop a:hover,
  .drop a:active {
    background: #fff;
    color: var(--maroon);
    font-weight: 500;
  }
  .head-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 14px;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    justify-self: auto;
  }
  .nav-contact {
    padding: 12px 0 4px;
    border-top: 1px solid var(--line);
    width: 100%;
    justify-content: flex-start;
    font-size: 15px;
  }
  .head-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* what we solve */
.solve-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: center;
}
.solve-copy h2 {
  margin-bottom: 14px;
}
.solve-copy .close {
  font-weight: 500;
  color: var(--ink);
  margin: 6px 0 22px;
}
.solve-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.solve-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 18px;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.solve-list li:hover {
  border-color: var(--gold);
  transform: translateX(5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}
.solve-ic {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 19px;
}
.solve-ic .ic {
  animation: floaty 3s ease-in-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@media (max-width: 860px) {
  .solve-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
/* slider */
.slider {
  position: relative;
}
.slider-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 2px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider-track::-webkit-scrollbar {
  display: none;
}
.slide {
  scroll-snap-align: start;
  flex: 0 0 clamp(240px, 27%, 290px);
}
.slide.card {
  /* height: 100%; */
}
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 2px;
}
.tag {
  font-size: 11px;
  color: var(--maroon);
  border: 1px solid var(--gold-soft);
  border-radius: 16px;
  padding: 4px 11px;
}
.slider-btn {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  cursor: pointer;
  z-index: 3;
  font-size: 20px;
  transition: 0.2s;
}
.slider-btn:hover {
  border-color: var(--gold);
  color: var(--maroon-d);
}
.slider-btn.prev {
  left: -14px;
}
.slider-btn.next {
  right: -14px;
}
@media (max-width: 760px) {
  .slide {
    flex: 0 0 80%;
  }
  .slider-btn.prev {
    left: -6px;
  }
  .slider-btn.next {
    right: -6px;
  }
}
/* why us pillars */
.whyus .big-quote {
  max-width: 820px;
  margin: 0 auto;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
  text-align: center;
}
.pillar {
  padding: 8px;
}
.pillar-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-size: 24px;
  margin-bottom: 14px;
}
.pillar h4 {
  font-family: var(--serif);
  margin-bottom: 6px;
}
.pillar p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 760px) {
  .pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* testimonials */
.testimonial-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.65, 0.2, 1),
    box-shadow 0.25s,
    border-color 0.25s;
  position: relative;
}
.t-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.07);
}
.t-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.t-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
  user-select: none;
}
.t-quote-icon {
  color: var(--gold);
  opacity: 0.6;
  display: inline-flex;
  align-items: center;
}
.t-card blockquote {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
  flex: 1 1 auto;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-soft);
  flex-shrink: 0;
  background: var(--bg);
}
.t-meta {
  display: flex;
  flex-direction: column;
}
.t-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.t-city {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .testimonial-grid,
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}
@media (max-width: 600px) {
  .testimonial-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
  .t-card {
    padding: 24px 20px 20px;
  }
}
/* blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.blog-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}
.blog-img {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 1px;
}
.blog-b {
  background: linear-gradient(135deg, #8b1010, #6e0d0d);
}
.blog-g {
  background: linear-gradient(135deg, #c5a059, #a9863f);
}
.blog-d {
  background: linear-gradient(135deg, #2b2b2b, #454545);
}
.blog-body {
  padding: 20px;
}
.blog-date {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.blog-body h3 {
  font-family: var(--serif);
  font-size: 17px;
  margin: 8px 0 8px;
}
.blog-body p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 12px;
}
/* whatsapp float */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 70;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.4s infinite;
}
.wa-float .ic {
  width: 30px;
  height: 30px;
}
.wa-float:hover {
  transform: scale(1.06);
}
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* what-we-do (why families) — Gullak-style cards */
.whatwedo .wd-title {
  font-size: clamp(26px, 3.4vw, 40px);
  max-width: 760px;
  margin-bottom: 34px;
}
.do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.do-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.do-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.08);
}
.do-ic {
  display: inline-flex;
  width: 52px;
  height: 52px;
  color: var(--maroon);
  font-size: 30px;
  align-items: center;
  margin-bottom: 16px;
}
.do-label {
  display: block;
  color: var(--maroon);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}
.do-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 10px;
}
.do-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}
@media (max-width: 820px) {
  .do-grid {
    grid-template-columns: 1fr;
  }
}
/* founder 3D */
.founder-media {
  position: relative;
  perspective: 1100px;
}
.founder-photo {
  position: relative;
  z-index: 2;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.65, 0.2, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.founder-media:hover .founder-photo {
  transform: rotateY(0) rotateX(0) translateY(-4px);
}
.fm-blob {
  position: absolute;
  inset: -10% -12% -10% 4%;
  background: linear-gradient(
    135deg,
    rgba(139, 16, 16, 0.18),
    rgba(197, 160, 89, 0.22)
  );
  filter: blur(34px);
  border-radius: 42% 58% 55% 45%;
  z-index: 0;
  animation: blob 9s ease-in-out infinite;
}
@keyframes blob {
  0%,
  100% {
    border-radius: 42% 58% 55% 45%;
  }
  50% {
    border-radius: 58% 42% 45% 60%;
  }
}
.fm-ring {
  position: absolute;
  right: -16px;
  top: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold-soft);
  border-radius: 50%;
  z-index: 1;
  animation: floaty 5s ease-in-out infinite;
}
.fm-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
.fm-dot1 {
  width: 16px;
  height: 16px;
  background: var(--gold);
  left: -10px;
  top: 32%;
  animation: floaty 3.6s ease-in-out infinite;
}
.fm-dot2 {
  width: 11px;
  height: 11px;
  background: var(--maroon);
  right: -8px;
  bottom: 16%;
  animation: floaty 4.6s ease-in-out infinite;
}
/* planning modern */
.planning .card {
  border-radius: 18px;
}
.planning .card-ic {
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  border: none;
  color: #fff;
}
.planning .card-ic .ic {
  color: #fff;
}
.planning .card-link {
  position: relative;
  overflow: hidden;
}
.planning .card-link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transition: width 0.3s;
}
.planning .card-link:hover:after {
  width: 100%;
}
.planning .card-link:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.08);
}
/* CTA button animations */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn-primary:hover:before {
  animation: shine 0.85s;
}
@keyframes shine {
  to {
    left: 140%;
  }
}
.btn-cta {
  overflow: visible;
}
.btn-cta:before {
  display: none;
}
.btn-cta:after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 34px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--maroon),
    var(--gold),
    var(--maroon)
  );
  background-size: 300% 100%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: bordermove 3s linear infinite;
  pointer-events: none;
}
@keyframes bordermove {
  to {
    background-position: 300% 0;
  }
}
/* contact page */
.contact-hero {
  padding-top: 52px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cf-field {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.cf-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}
.cf-success {
  display: none;
  margin-top: 14px;
  color: #1a7a4a;
  font-size: 14px;
  font-weight: 500;
}
.contact-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}
.contact-info h3 {
  font-family: var(--serif);
  margin-bottom: 18px;
}
.ci-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.ci-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.ci-list strong {
  color: var(--ink);
}
.ci-ic {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.14);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
}
.nav-link:hover {
  color: var(--maroon);
}
.nav-link.on {
  color: var(--maroon);
}
.nav-calc {
  font-weight: 600;
}
.nav-calc .ic {
  color: var(--gold);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--maroon);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--gold-soft);
  border-radius: 20px;
  padding: 7px 14px;
}
.chip .ic {
  color: var(--gold);
  font-size: 15px;
}
.solve-center .solve-list {
  max-width: 720px;
  margin: 22px auto;
  text-align: left;
}
.solve-center h2 {
  margin-bottom: 0;
}
.solve-center .close {
  margin: 24px 0 20px;
  font-weight: 500;
  color: var(--ink);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.calc-inputs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.calc-result {
  background: linear-gradient(150deg, #7a0f0f, #8b1010 55%, #6e0d0d);
  color: #fff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
}
.cr-row strong {
  font-family: var(--serif);
  font-size: 20px;
}
.cr-total {
  border-bottom: none;
  margin-top: 4px;
}
.cr-total span {
  color: #fff;
}
.cr-total strong {
  color: var(--gold);
  font-size: 26px;
}
.calc-result .btn {
  margin-top: 20px;
  align-self: flex-start;
}
@media (max-width: 820px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
}

.about-hero .hero-copy {
  max-width: 780px;
  margin: 0 auto;
}
.timeline {
  position: relative;
  max-width: 760px;
  margin: 34px auto 0;
  padding-left: 34px;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(var(--maroon), var(--gold));
}
.tl-item {
  position: relative;
  padding: 0 0 30px;
}
.tl-item:before {
  content: "";
  position: absolute;
  left: -33px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
}
.tl-item:after {
  content: "";
  position: absolute;
  left: -27px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--maroon);
}
.tl-phase {
  color: var(--maroon);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}
.tl-item h4 {
  font-family: var(--serif);
  font-size: 19px;
  margin-bottom: 6px;
}
.tl-item p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.vm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.07);
}
.vm-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.vm-card h3 {
  font-family: var(--serif);
  margin-bottom: 8px;
}
.vm-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}
.stand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.stand-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.stand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.07);
  border-color: var(--gold);
}
.stand-num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  font-weight: 600;
}
.stand-card h4 {
  font-family: var(--serif);
  font-size: 17px;
  margin: 8px 0 8px;
}
.stand-card p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
}
.cta-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7a0f0f, #8b1010 55%, #6e0d0d);
  color: #fff;
  padding: 66px 0;
  text-align: center;
}
.cta-hero:before {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.3), transparent 60%);
  pointer-events: none;
}
.cta-hero h2 {
  color: #fff;
  position: relative;
}
.cta-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 8px auto 22px;
  position: relative;
}
.cta-hero .btn {
  position: relative;
}
@media (max-width: 820px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
}
/* footer */
.foot-grid {
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
}
.foot-social {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}
.foot-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #242424;
  color: #cfcfcf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.2s;
}
.foot-social a:hover {
  background: var(--maroon);
  color: #fff;
}
.foot-social .ic {
  width: 18px;
  height: 18px;
}
.foot-addr {
  font-size: 12.5px;
  color: #9a9a9a;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0;
}
.foot-addr .ic {
  color: var(--gold);
}
.foot-arn {
  color: #bcbcbc;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

/* about founder cutout (image-2 style) */
.founder-cut {
  position: relative;
  background: linear-gradient(160deg, #3a0c0c, #8b1010 58%, #5c0a0a);
  border-radius: 22px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.founder-cut:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 55% 40%,
    rgba(197, 160, 89, 0.3),
    transparent 55%
  );
  pointer-events: none;
}
.fc-ring {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 2px dashed rgba(197, 160, 89, 0.55);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: spin 26s linear infinite;
}
.fc-ring2 {
  width: 250px;
  height: 250px;
  top: 14%;
  border-color: rgba(255, 255, 255, 0.18);
  animation: spin 20s linear infinite reverse;
}
@keyframes spin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}
.fc-img {
  position: relative;
  z-index: 2;
  max-height: 470px;
  width: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}
.fc-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  z-index: 3;
}
.fc-badge strong {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--maroon);
  display: block;
  line-height: 1;
}
.fc-badge span {
  font-size: 12.5px;
  color: var(--muted);
}
/* team section */
.team-photo {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--line);
}
.team-photo img {
  display: block;
  width: 100%;
}
.team-note {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 10px;
  border-radius: 20px;
}
/* footer app badges */
.foot-app-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8f8f8f;
  margin: 16px 0 8px;
}
.foot-apps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #000;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 8px 14px;
  color: #fff;
  transition: 0.2s;
}
.app-badge:hover {
  border-color: var(--gold);
}
.app-badge .ic {
  width: 24px;
  height: 24px;
}
.app-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 14px;
  font-weight: 600;
}
.app-badge small {
  font-size: 9px;
  font-weight: 400;
  color: #bdbdbd;
  text-transform: none;
  letter-spacing: 0.2px;
}

.hero-inner .hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.hero-visual2 {
  display: flex;
  justify-content: center;
}
.hero-illu {
  width: 100%;
  max-width: 440px;
}
.hero-illu .bar {
  transform-box: fill-box;
  transform-origin: center bottom;
  transform: scaleY(0);
  animation: barUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-illu .b2 {
  animation-delay: 0.1s;
}
.hero-illu .b3 {
  animation-delay: 0.2s;
}
.hero-illu .b4 {
  animation-delay: 0.3s;
}
.hero-illu .b5 {
  animation-delay: 0.4s;
}
@keyframes barUp {
  to {
    transform: scaleY(1);
  }
}
.hero-illu .trend {
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
  animation: draw 1.3s 0.5s ease forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.hero-illu .pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: pulseDot 2.4s 0.9s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(1.6);
  }
}
.hero-illu .coin {
  transform-box: fill-box;
  transform-origin: center;
  animation: floaty 3.6s ease-in-out infinite;
}
.trust-strip {
  background: var(--alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 14px;
  padding: 18px 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.trust-item .ic {
  color: var(--gold);
  font-size: 20px;
}
.section-cta {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14.5px;
}
.cta-link {
  color: var(--maroon);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.cta-link:hover {
  gap: 10px;
}
@media (max-width: 820px) {
  .hero-inner .hero-grid {
    grid-template-columns: 1fr;
  }
}

.textband {
  max-width: 740px;
}
.textband .eyebrow {
  margin-bottom: 0;
}
.textband h2 {
  margin-bottom: 12px;
}
.textband p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.card {
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.section:not(.features) .card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
}
.feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.feat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
  border-color: var(--gold);
}
.feat-ic {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.25s;
}
.feat-item:hover .feat-ic {
  transform: scale(1.08) rotate(-3deg);
}
.feat-txt h3 {
  font-family: var(--serif);
  font-size: 17px;
  margin-bottom: 4px;
}
.feat-txt p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
}
@media (max-width: 820px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
}

/* type-card grid: sharper, modern, animated */
.card:not(.card-link) {
  position: relative;
  overflow: hidden;
}
.card:not(.card-link):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transition: width 0.38s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card:not(.card-link):hover:before {
  width: 100%;
}
.card:not(.card-link) .card-ic {
  background: rgba(197, 160, 89, 0.12);
  border-color: transparent;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.35s;
}
.card:not(.card-link) .card-ic .ic {
  transition: color 0.3s;
}
.card:not(.card-link):hover .card-ic {
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  transform: scale(1.1) rotate(-4deg);
}
.card:not(.card-link):hover .card-ic .ic {
  color: #fff;
}
.card:not(.card-link):hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(139, 16, 16, 0.08);
}
.card:not(.card-link) h3 {
  transition: color 0.2s;
}
.card:not(.card-link):hover h3 {
  color: var(--maroon);
}
.reveal.in .card-grid .card:not(.card-link) .card-ic {
  animation: popIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes popIn {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* proper pill CTA */
.section-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14.5px;
}
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--maroon);
  font-weight: 600;
  font-size: 13.5px;
  border: 1px solid var(--gold-soft);
  border-radius: 26px;
  padding: 9px 20px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    gap 0.2s;
}
.cta-link:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
  gap: 11px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.intro-left h2 {
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 32px);
  margin: 0;
}
.intro-left .rule {
  margin: 16px 0 0;
}
.intro-right p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 14px;
}
.intro-right p:last-child {
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* type-card grid fills full width, 3-up, last row centered */

.card:not(.card-link) {
  padding: 28px 26px;
}
.card:not(.card-link) .card-ic {
  width: 52px;
  height: 52px;
  font-size: 24px;
  background: rgba(139, 16, 16, 0.07);
}

.intro-cta {
  margin-top: 18px;
}
.intro-cta .section-cta {
  justify-content: flex-start;
  margin-top: 0;
}

.card-grid.types-grid,
.feat-grid,
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 8px;
}
.card-grid.types-grid > .card,
.feat-grid > .feat-item,
.steps > .step {
  flex: 0 1 calc(100% / var(--cols, 3) - 17px);
  align-self: stretch;
}
@media (max-width: 900px) {
  .card-grid.types-grid > .card,
  .feat-grid > .feat-item,
  .steps > .step {
    max-width: calc(50% - 11px);
  }
}
@media (max-width: 560px) {
  .card-grid.types-grid > .card,
  .feat-grid > .feat-item,
  .steps > .step {
    max-width: 100%;
  }
}

.chk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
}
.chk-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.chk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  border-color: var(--gold);
}
.chk-ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.chk-card h3 {
  font-family: var(--serif);
  margin-bottom: 8px;
}
.chk-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 14px;
}
@media (max-width: 760px) {
  .chk-grid {
    grid-template-columns: 1fr;
  }
}
.getstarted h2 {
  margin-bottom: 0;
}
.gs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 10px 0 24px;
}
.gs-item {
  flex: 0 1 190px;
  text-align: center;
}
.gs-ic {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--maroon);
  margin: 0 auto 14px;
  transition: transform 0.25s;
}
.gs-item:hover .gs-ic {
  transform: translateY(-4px) scale(1.05);
}
.gs-item h4 {
  font-family: var(--serif);
  font-size: 16px;
  margin: 0;
}
.gs-note {
  max-width: 680px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 14px;
}
.getstarted .btn-row {
  justify-content: center;
}
.rp-card,
.fh-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.06);
}
.rp-head,
.fh-head {
  background: linear-gradient(150deg, #1a1a1a, #3a0c0c 60%, #8b1010);
  color: #fff;
  padding: 28px 30px;
}
.rp-head h3,
.fh-head h3 {
  color: #fff;
  font-family: var(--serif);
  margin-bottom: 8px;
}
.rp-head p,
.fh-head p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  margin: 0 0 18px;
  line-height: 1.6;
}
.rp-progress,
.fh-progress {
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  overflow: hidden;
}
.rp-bar,
.fh-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #e6c987);
  border-radius: 3px;
  transition: width 0.4s;
}
.rp-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
}
.rp-body,
.fh-body {
  padding: 28px 30px;
}
.rp-q {
  font-family: var(--serif);
  font-size: 19px;
  margin-bottom: 18px;
}
.rp-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.rp-opt {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: 0.18s;
  font-family: var(--sans);
}
.rp-opt:hover {
  border-color: var(--gold);
}
.rp-opt.sel {
  border-color: var(--maroon);
  background: rgba(139, 16, 16, 0.04);
  box-shadow: 0 0 0 2px rgba(139, 16, 16, 0.12);
}
.rp-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex: 0 0 auto;
  margin-top: 2px;
  transition: 0.18s;
}
.rp-opt.sel .rp-radio {
  border-color: var(--maroon);
  background: radial-gradient(circle, #8b1010 40%, transparent 45%);
}
.rp-otext strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 3px;
}
.rp-otext span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.rp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.rp-nav.center {
  justify-content: center;
  gap: 14px;
}
.shake {
  animation: shake 0.4s;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@media (max-width: 640px) {
  .rp-opts {
    grid-template-columns: 1fr;
  }
}
.rp-gauge {
  text-align: center;
  margin-bottom: 10px;
}
.rp-gauge svg {
  width: 220px;
  max-width: 100%;
}
.rp-band {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-top: -6px;
}
.rp-desc {
  text-align: center;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 22px;
}
.rp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}
.rp-sp {
  background: var(--alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.rp-sp span {
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--faint);
}
.rp-spbar {
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  margin: 8px 0;
}
.rp-spbar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #1f7a4d, #2f9d64);
}
.rp-spbar i.dk {
  background: linear-gradient(90deg, var(--maroon), var(--gold));
}
.rp-sp strong {
  font-family: var(--serif);
  font-size: 16px;
}
.rp-disc,
.fh-disc {
  font-size: 11.5px;
  color: var(--faint);
  line-height: 1.6;
  background: var(--alt);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .rp-split {
    grid-template-columns: 1fr;
  }
}
.fh-field {
  margin-bottom: 26px;
}
.fh-frow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.fh-frow label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.fh-val {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--maroon);
  background: var(--alt);
  padding: 4px 12px;
  border-radius: 8px;
}
.fh-val em {
  font-size: 11px;
  color: var(--faint);
  font-style: normal;
  margin-left: 1px;
}
.fh-field input[type="range"] {
  width: 100%;
  accent-color: #8b1010;
  height: 5px;
}
.fh-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--faint);
  margin-top: 6px;
}
.fh-foot {
  display: flex;
  justify-content: space-between;
  padding: 0 30px 28px;
}
.fh-scorecard {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}
.fh-ring {
  width: 130px;
  height: 130px;
}
.fh-slabel {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--faint);
}
.fh-band {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin-top: 4px;
}
.fh-break {
  background: var(--alt);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 20px;
}
.fh-break h4,
.fh-focus h4 {
  font-family: var(--serif);
  font-size: 16px;
  margin-bottom: 14px;
}
.fh-brow {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 6px;
}
.fh-brow strong {
  color: var(--maroon);
}
.fh-bbar {
  height: 6px;
  background: #e7e7e7;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 14px;
}
.fh-bbar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
}
.fh-focus {
  margin-bottom: 22px;
}
.fh-focus ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fh-focus li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
  padding: 8px 0;
}
.fh-focus li .ic {
  color: var(--gold);
  margin-top: 2px;
}
.fh-cta {
  display: block;
  text-align: center;
  margin-bottom: 18px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.08);
}
.plan-card .card-ic {
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
}
.plan-card .card-ic .ic {
  color: #fff;
}
.plan-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 14px 0 6px;
}
.plan-card p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 10px;
}
.plan-card .tags {
  margin: 0 0 14px;
}
.plan-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.plan-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--maroon);
  font-weight: 600;
  font-size: 13px;
  transition: gap 0.2s;
}
.plan-link:hover {
  gap: 10px;
}
.plan-calc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--maroon);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--gold-soft);
  border-radius: 22px;
  padding: 8px 14px;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  justify-content: center;
}
.plan-calc:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}
@media (max-width: 1000px) {
  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}
.goal-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.goal-modal[hidden] {
  display: none;
}
.gm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 10, 0.55);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.2s;
}
.gm-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  max-width: 520px;
  width: 100%;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  animation: popIn2 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
  max-height: 92vh;
  overflow: auto;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popIn2 {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.gm-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.gm-x:hover {
  border-color: var(--maroon);
  color: var(--maroon);
}
.gm-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--maroon);
  margin-bottom: 6px;
}
.gm-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.gm-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 16px;
}
.gm-row input,
.gm-row select {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--maroon);
  background: var(--alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
}
.gm-row input:focus,
.gm-row select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}
#gmAmt {
  width: 150px;
}
#gmYears,
#gmRet {
  width: 70px;
  text-align: center;
}
#gmGoal {
  min-width: 170px;
}
#gmCalc {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.gm-result {
  margin-top: 22px;
  background: linear-gradient(
    150deg,
    rgba(139, 16, 16, 0.05),
    rgba(197, 160, 89, 0.1)
  );
  border: 1px solid var(--gold-soft);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.gm-inv,
.gm-per {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--faint);
}
.gm-sip {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
  margin: 4px 0;
}
.gm-explain {
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0 16px;
  line-height: 1.6;
}
.gm-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--maroon);
  font-weight: 600;
  font-size: 13px;
}
.gm-disc {
  font-size: 11px;
  color: var(--faint);
  line-height: 1.6;
  margin-top: 18px;
}

.planning .plan-grid {
  perspective: 1200px;
}
.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  align-items: center;
  transform-style: preserve-3d;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s,
    border-color 0.25s;
}
.plan-card:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 26px 52px rgba(139, 16, 16, 0.13);
  border-color: var(--gold);
}
.planning .plan-card .card-ic {
  background: linear-gradient(135deg, var(--maroon), var(--gold)) !important;
  color: #fff !important;
  width: 56px;
  height: 56px;
  font-size: 26px;
  box-shadow: 0 12px 22px rgba(139, 16, 16, 0.28);
  animation: icon3d 4.2s ease-in-out infinite;
  transform-style: preserve-3d;
  margin-bottom: 14px;
}
.planning .plan-card .card-ic .ic {
  color: #fff !important;
}
@keyframes icon3d {
  0%,
  100% {
    transform: translateY(0) rotateY(0);
  }
  50% {
    transform: translateY(-6px) rotateY(16deg);
  }
}
.plan-card:hover .card-ic {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.1);
}
.plan-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 6px;
}
.plan-card p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 6px;
}
.plan-foot {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
}
.plan-calc {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--maroon);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--gold-soft);
  border-radius: 24px;
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.2s;
}
.plan-calc:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}
.plan-div {
  height: 1px;
  width: 100%;
  background: var(--line);
  margin: 14px 0 12px;
}
.plan-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--maroon);
  font-weight: 600;
  font-size: 13.5px;
  transition: gap 0.2s;
}
.plan-link:hover {
  gap: 10px;
}

.drop-calc {
  min-width: 240px;
}
.calc-app {
  margin-top: 6px;
}
.calc-grid2 {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 26px;
  align-items: start;
}
.calc-left,
.calc-right {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.calc-title {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.calc-badge {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--maroon);
  background: rgba(197, 160, 89, 0.14);
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
  padding: 3px 10px;
}
.calc-desc {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
  line-height: 1.6;
}
.calc-field {
  margin-bottom: 22px;
}
.calc-frow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.calc-frow label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.calc-vbox {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--gold-soft);
  border-radius: 9px;
  padding: 5px 10px;
}
.calc-vbox em {
  font-style: normal;
  font-size: 12px;
  color: var(--faint);
}
.calc-num {
  width: 88px;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--maroon);
  text-align: right;
}
.calc-num:focus {
  outline: none;
}
.calc-num::-webkit-outer-spin-button,
.calc-num::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-range {
  width: 100%;
  accent-color: #8b1010;
  height: 5px;
}
.calc-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--faint);
  margin-top: 6px;
}
.calc-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 20px;
}
.calc-reset {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
}
.calc-reset:hover {
  color: var(--maroon);
}
.calc-explore > span {
  font-size: 12px;
  color: var(--faint);
  display: block;
  margin-bottom: 10px;
}
.calc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.calc-chip {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 8px 14px;
  cursor: pointer;
  transition: 0.18s;
}
.calc-chip:hover {
  border-color: var(--gold);
  color: var(--maroon);
}
.calc-chip.on {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}
.calc-right h4 {
  font-family: var(--serif);
  font-size: 16px;
  margin-bottom: 18px;
}
.calc-donut {
  text-align: center;
  margin-bottom: 22px;
}
.calc-donut .dn {
  width: 190px;
  max-width: 70%;
  transform: rotate(0);
}
.dn-lg {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--muted);
}
.dn-lg span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dn-lg i {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}
.dn-lg .l1 {
  background: #8b1010;
}
.dn-lg .l2 {
  background: #eadfc5;
}
.calc-rrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line2);
  font-size: 13.5px;
}
.calc-rrow span {
  color: var(--muted);
}
.calc-rrow strong {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}
.calc-rrow.hi {
  background: linear-gradient(
    90deg,
    rgba(139, 16, 16, 0.05),
    rgba(197, 160, 89, 0.06)
  );
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  padding: 16px 16px;
  margin-bottom: 6px;
}
.calc-rrow.hi span {
  color: var(--maroon);
  font-weight: 600;
}
.calc-rrow.hi strong {
  font-size: 22px;
  color: var(--maroon);
}
.calc-assume {
  font-size: 11.5px;
  color: var(--faint);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .calc-grid2 {
    grid-template-columns: 1fr;
  }
}

.map-section {
  padding-top: 0;
}
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.07);
  line-height: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
@media (max-width: 640px) {
  .map-wrap iframe {
    height: 320px;
  }
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.review-modal[hidden] {
  display: none;
}
.rv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 10, 0.55);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.2s;
}
.rv-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  max-width: 520px;
  width: 100%;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  animation: popIn2 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
  max-height: 92vh;
  overflow: auto;
}
.rv-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.rv-x:hover {
  border-color: var(--maroon);
  color: var(--maroon);
}
.rv-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--maroon);
  margin-bottom: 6px;
}
.rv-sub {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 22px;
  line-height: 1.6;
}
.rv-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rv-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed var(--gold-soft);
  border-radius: 12px;
  padding: 26px;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  transition: 0.2s;
  background: var(--alt);
}
.rv-upload:hover,
.rv-upload.drag {
  border-color: var(--gold);
  background: #fff;
}
.rv-upload i {
  font-size: 28px;
  color: var(--maroon);
}
.rv-upload.has-file {
  border-color: var(--maroon);
  color: var(--maroon);
  font-weight: 600;
  background: #fff;
}
.rv-err {
  display: block;
  color: #b00020;
  font-size: 12.5px;
  margin-top: 8px;
}
.rv-success {
  display: none;
  margin-top: 14px;
  color: #1a7a4a;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.rv-note {
  font-size: 11.5px;
  color: var(--faint);
  margin-top: 16px;
  text-align: center;
}
@media (max-width: 520px) {
  .rv-row2 {
    grid-template-columns: 1fr;
  }
}

.calc-embed-section .calc-left,
.calc-embed-section .calc-right {
  background: #fff;
}
.calc-alllink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--maroon);
  font-weight: 600;
  font-size: 13px;
  margin-top: 18px;
  transition: gap 0.2s;
}
.calc-alllink:hover {
  gap: 10px;
}

.team-member {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  margin-top: 10px;
}
.tm-copy h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 4px;
}
.tm-copy .role {
  color: var(--maroon);
  font-weight: 500;
  margin: 0 0 14px;
  font-size: 14px;
}
.tm-copy p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.tm-media {
  position: relative;
  perspective: 1000px;
  display: flex;
  justify-content: center;
}
.tm-photo {
  position: relative;
  z-index: 2;
  width: 300px;
  max-width: 100%;
  aspect-ratio: 3/3.4;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #f1e3e3, #f1e9de);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.16);
  transform: rotateY(4deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.65, 0.2, 1);
}
.tm-media:hover .tm-photo {
  transform: rotateY(0) rotateX(0) translateY(-4px);
}
.tm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tm-ring {
  position: absolute;
  right: 6px;
  top: -14px;
  width: 110px;
  height: 110px;
  border: 2px dashed var(--gold-soft);
  border-radius: 50%;
  z-index: 1;
  animation: floaty 5s ease-in-out infinite;
}
.founder-copy .role {
  color: var(--maroon);
  font-weight: 500;
  margin: -4px 0 14px;
  font-size: 13.5px;
}
@media (max-width: 820px) {
  .team-member {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tm-media {
    order: -1;
  }
}

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
/* statement band */
.statement {
  background: linear-gradient(180deg, #ffffff 0%, #fbf6ef 100%);
}
.statement .eyebrow {
  margin-bottom: 10px;
}
.statement .rule {
  display: none;
}
.statement .statement-body {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.statement .statement-body:before {
  content: "\201C";
  position: absolute;
  left: 50%;
  top: -46px;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 70px;
  color: var(--gold-soft);
  line-height: 1;
}
.statement .statement-body p {
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.statement h2 {
  margin-bottom: 14px;
}
/* types grid modern + even rows */
.types-grid {
  gap: 20px;
  margin-top: 10px;
}
.types-section .card {
  padding: 28px 24px;
  border-radius: 16px;
}
.types-section .card-ic {
  width: 52px;
  height: 52px;
  font-size: 24px;
  margin-bottom: 18px;
}
.types-section .center {
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 560px) {
  .types-grid {
    grid-template-columns: 1fr !important;
  }
}

.intro-cta {
  margin-top: 18px;
}
.intro-cta .section-cta {
  justify-content: flex-start;
  margin-top: 0;
}

.legal-hero {
  background: linear-gradient(150deg, #1a1a1a, #3a0c0c 60%, #8b1010);
  color: #fff;
  padding: 54px 0 40px;
}
.legal-hero .eyebrow {
  color: var(--gold);
}
.legal-hero h1 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  margin: 6px 0 8px;
}
.legal-updated {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
}
.legal-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.legal-nav a {
  font-size: 13.5px;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 8px;
  transition: 0.15s;
}
.legal-nav a:hover {
  background: var(--alt);
  color: var(--maroon);
}
.legal-nav a.on {
  background: rgba(139, 16, 16, 0.06);
  color: var(--maroon);
  font-weight: 600;
}
.reg-block {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.reg-block h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--faint);
  margin-bottom: 10px;
}
.reg-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reg-block li {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--line);
}
.reg-block li span {
  color: var(--muted);
}
.reg-block li strong {
  color: var(--ink);
}
.reg-firm {
  font-size: 11.5px;
  color: var(--faint);
  margin-top: 10px;
  line-height: 1.5;
}
.legal-body {
  max-width: 760px;
}
.legal-body h3 {
  font-family: var(--serif);
  font-size: 19px;
  margin: 26px 0 10px;
  color: var(--ink);
}
.legal-body h3:first-child {
  margin-top: 0;
}
.legal-body p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0 0 12px;
}
.legal-ul {
  margin: 0 0 12px;
  padding-left: 0;
  list-style: none;
}
.legal-ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.legal-ul li:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.legal-callout {
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--gold-soft);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13.5px !important;
  color: var(--ink) !important;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 16px;
  font-size: 13px;
}
.legal-table th {
  background: var(--maroon);
  color: #fff;
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
}
.legal-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.legal-table tr:nth-child(even) td {
  background: var(--alt);
}
.gro-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  background: linear-gradient(
    150deg,
    rgba(139, 16, 16, 0.05),
    rgba(197, 160, 89, 0.08)
  );
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 12px;
}
.gro-block strong {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--maroon);
  display: block;
}
.gro-block span {
  font-size: 12.5px;
  color: var(--muted);
}
.gro-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gro-contact a {
  color: var(--maroon);
  font-weight: 600;
  font-size: 13.5px;
}
.link-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.link-col a {
  color: var(--maroon);
  font-weight: 500;
  font-size: 14px;
}
.link-col a:hover {
  text-decoration: underline;
}
@media (max-width: 820px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-nav {
    position: static;
  }
}

.rv-how {
  margin: 10px 0 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.rv-how summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon);
  background: var(--alt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.rv-how summary::-webkit-details-marker {
  display: none;
}
.rv-how summary:after {
  content: "+";
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
}
.rv-how[open] summary:after {
  content: "\2013";
}
.rv-steps {
  margin: 0;
  padding: 14px 16px 4px 34px;
}
.rv-steps li {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.rv-steps a {
  color: var(--maroon);
  font-weight: 600;
}
.rv-hownote {
  font-size: 11.5px;
  color: var(--faint);
  padding: 0 16px 12px;
  margin: 0;
}

/* Home founder: clean, no 3D tilt */
.founder-media {
  perspective: none;
}
.founder-photo {
  transform: none !important;
  border-radius: 20px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.16);
  border: 1px solid var(--gold-soft);
  overflow: hidden;
}
.founder-media:hover .founder-photo {
  transform: translateY(-4px) !important;
}
.fm-ring {
  display: none;
}
.fm-blob {
  opacity: 0.65;
  filter: blur(40px);
}
.founder-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Meet-our-founder premium card */
.founder-hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, #2a0c0c, #8b1010 62%, #5c0a0a);
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 26px 54px rgba(139, 16, 16, 0.2);
}
.founder-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 55% 38%,
    rgba(197, 160, 89, 0.3),
    transparent 58%
  );
  pointer-events: none;
}
.founder-hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}
.fh-ring {
  position: absolute;
  top: 9%;
  left: 50%;
  width: 330px;
  height: 330px;
  border: 2px dashed rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: spin 28s linear infinite;
  z-index: 1;
}
.fh-ring2 {
  width: 250px;
  height: 250px;
  top: 15%;
  border-color: rgba(197, 160, 89, 0.55);
  animation: spin 22s linear infinite reverse;
}
.fh-img {
  position: relative;
  z-index: 2;
  max-height: 470px;
  width: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.42));
}
.fh-badge {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 16px;
  padding: 13px 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}
.fh-badge strong {
  font-family: var(--serif);
  font-size: 23px;
  display: block;
  line-height: 1;
  color: var(--maroon);
}
.fh-badge span {
  font-size: 12px;
  color: var(--muted);
}
.fh-badge-tl {
  top: 22px;
  left: 22px;
  animation: floaty 5s ease-in-out infinite;
}
.fh-badge-br {
  bottom: 22px;
  right: 22px;
  background: linear-gradient(135deg, #8b1010, #6e0d0d);
  animation: floaty 4.4s ease-in-out infinite;
}
.fh-badge-br strong {
  color: #fff;
}
.fh-badge-br span {
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 520px) {
  .founder-hero {
    min-height: 380px;
  }
  .fh-img {
    max-height: 360px;
  }
  .fh-badge strong {
    font-size: 19px;
  }
}
