:root {
  --ink: #102140;
  --navy: #0d1c38;
  --paper: #f8f5ef;
  --lime: #c6eb54;
  --orange: #ff7045;
  --muted: #657083;
  --line: rgba(16, 33, 64, .16);
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
  --display: "Space Grotesk", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.announcement { min-height: 39px; background: var(--lime); color: var(--ink); display: flex; justify-content: center; align-items: center; gap: 12px; padding: 9px 24px; font: 500 11px/1.3 var(--mono); letter-spacing: .025em; text-align: center; }
.announcement a { text-decoration: underline; font-weight: 500; white-space: nowrap; }
.announcement a span { text-decoration: none; display: inline-block; margin-left: 2px; }
.pulse-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 3px rgba(255,112,69,.2); }

.hero { min-height: 770px; position: relative; isolation: isolate; overflow: hidden; color: white; background: var(--navy); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 74% 25%, #315d8b 0, #142d56 20%, transparent 42%), radial-gradient(circle at 10% 86%, rgba(84, 137, 181, .35), transparent 35%), linear-gradient(115deg, #0b1832 25%, #172f57 60%, #0b1c3c); }
.hero-grid { position: absolute; inset: 0; z-index: -1; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000, transparent 84%); }
.nav { height: 128px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 3; }
.brand { display: inline-flex; align-items: center; gap: 10px; font: 600 18px/1 var(--display); letter-spacing: -.06em; }
.brand b { color: var(--lime); font-weight: 600; }
.brand-mark { width: 31px; height: 31px; border: 1.5px solid currentColor; border-radius: 50%; display: grid; place-items: center; font: 500 11px var(--mono); letter-spacing: -.16em; }
.brand--logo { display: inline-flex; padding: 4px 0; }
.brand--logo img { display: block; width: 184px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 600; }
.nav-links > a:not(.nav-cta) { opacity: .86; transition: opacity .2s; }
.nav-links > a:not(.nav-cta):hover { opacity: 1; }
.nav-cta { border: 1px solid rgba(255,255,255,.5); padding: 12px 17px; border-radius: 40px; transition: background .2s, color .2s; }
.nav-cta:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.nav-cta span, .button span { margin-left: 7px; font-size: 18px; line-height: 0; }
.menu-toggle { display: none; background: none; color: white; border: 0; padding: 10px; }
.menu-toggle span { display: block; background: currentColor; height: 1px; width: 24px; margin: 6px 0; }
.hero-content { padding-top: 93px; position: relative; z-index: 2; }
.eyebrow, .section-kicker { font: 500 10px/1.25 var(--mono); letter-spacing: .11em; }
.eyebrow { display: flex; gap: 9px; align-items: center; color: #dce7f4; }
.eyebrow span { width: 31px; height: 1px; background: var(--lime); display: block; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 730px; margin: 22px 0 22px; color: #f7f4ee; font: 600 clamp(60px, 8.3vw, 118px)/.9 var(--display); letter-spacing: -.075em; }
h1 em, h2 em { color: var(--lime); font-style: normal; }
.hero-copy { width: min(400px, 100%); margin-bottom: 30px; color: #d5dfeb; font-size: 15px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 25px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 4px; padding: 15px 20px; border: 0; border-radius: 1px; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .18s, background .18s, color .18s; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 6px 6px 0 rgba(0,0,0,.13); }
.button-primary:hover { background: #d9ff64; }
.button-dark { color: white; background: var(--ink); box-shadow: 6px 6px 0 var(--lime); }
.text-link, .arrow-link { display: inline-flex; align-items: center; gap: 9px; border-bottom: 1px solid currentColor; padding-bottom: 4px; font-size: 13px; font-weight: 700; }
.text-link span { font-size: 18px; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 50px; }
.hero-proof p { margin: 0; color: #d5dfeb; font-size: 11px; line-height: 1.5; }
.hero-proof strong { color: white; font-size: 12px; }
.avatar-stack { display: flex; padding-left: 5px; }
.avatar-stack span { width: 28px; height: 28px; margin-left: -5px; border: 2px solid var(--navy); border-radius: 50%; display: grid; place-items: center; color: white; background: #7a9fbd; font: 500 8px var(--mono); }
.avatar-stack span:nth-child(2) { background: var(--orange); }.avatar-stack span:nth-child(3) { background: #7789c1; }.avatar-stack span:nth-child(4) { background: var(--lime); color: var(--ink); }
.hero-sculpture { position: absolute; right: max(4vw, calc((100vw - 1180px)/2 - 90px)); top: 144px; width: min(47vw, 585px); height: 550px; z-index: 1; }
.halo { position: absolute; width: 460px; height: 460px; right: 16px; top: 25px; border: 1px solid rgba(255,255,255,.27); border-radius: 50%; box-shadow: 0 0 0 52px rgba(255,255,255,.03), 0 0 0 105px rgba(255,255,255,.025); }
.orb { position: absolute; border-radius: 50%; filter: drop-shadow(15px 20px 17px rgba(1,9,21,.4)); }
.orb-one { width: 230px; height: 230px; right: 76px; top: 123px; background: radial-gradient(circle at 30% 23%, #fff5d3 0 5%, #ffb876 19%, #ff7045 48%, #b33640 77%); }
.orb-two { width: 128px; height: 128px; left: 30px; bottom: 26px; background: radial-gradient(circle at 30% 25%, #efffb5, #b4d54a 32%, #6c9a4a 70%); }
.orb-three { width: 54px; height: 54px; right: 30px; bottom: 62px; background: linear-gradient(145deg, #b0cff1, #3b648c); }
.route { position: absolute; border: 1px solid rgba(198,235,84,.6); border-radius: 50%; transform: rotate(-34deg); }
.route-one { width: 460px; height: 170px; right: -21px; top: 183px; }.route-two { width: 350px; height: 130px; right: 60px; top: 198px; border-color: rgba(255,255,255,.32); }
.location-pin { position: absolute; left: 138px; top: 113px; width: 66px; height: 66px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: grid; place-items: center; background: var(--lime); box-shadow: 9px 13px 23px rgba(0,0,0,.25); }
.location-pin span { transform: rotate(45deg); color: var(--ink); font: 500 13px var(--mono); }.location-pin i { position:absolute; width: 13px; height: 13px; background: var(--ink); border-radius: 50%; top: 13px; left: 13px; }
.sculpture-label { position: absolute; right: 0; bottom: 3px; color: #f5f1e8; font: 600 13px/1.05 var(--mono); letter-spacing: -.05em; text-align: right; }
.hero-foot { position: absolute; z-index: 2; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; color: #bdcadd; font: 500 9px var(--mono); letter-spacing: .08em; }
.hero-foot i { height: 1px; flex: 1; background: rgba(255,255,255,.3); margin: 0 18px; }

.ticker { overflow: hidden; white-space: nowrap; background: var(--orange); color: var(--ink); padding: 16px 0 15px; transform: rotate(-1.2deg) scale(1.02); position: relative; z-index: 5; }
.ticker-track { display: inline-flex; width: max-content; animation: ticker 28s linear infinite; font: 600 13px var(--mono); letter-spacing: -.04em; }
.ticker span { padding-right: 43px; }.ticker b { color: #f7f4ee; font-size: 15px; padding-left: 38px; }
@keyframes ticker { to { transform: translateX(-50%); } }
.section { padding: 126px 0; }
.section-kicker { color: var(--orange); }
.intro-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px,.55fr); gap: 10vw; align-items: end; margin-top: 33px; }
h2 { margin-bottom: 0; font: 600 clamp(38px, 5.1vw, 70px)/.96 var(--display); letter-spacing: -.07em; }
.intro h2 { max-width: 740px; }.intro-layout p { margin-bottom: 25px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.arrow-link { color: var(--ink); }.arrow-link span { font-size: 18px; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 100px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-row > div { min-height: 147px; padding: 22px 22px 22px 0; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }.stat-row > div:not(:first-child) { padding-left: 22px; }.stat-row > div:last-child { border: 0; }
.stat-row strong { font: 600 42px/1 var(--display); letter-spacing: -.07em; }.stat-row span { max-width: 110px; color: var(--muted); font: 11px/1.35 var(--mono); }

.services { background: #e9e6de; }.services-heading { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 0 10%; }.services-heading .section-kicker { grid-column: span 2; margin-bottom: 34px; }.services-heading p { max-width: 310px; margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; }
.service-card { min-height: 415px; position: relative; overflow: hidden; padding: 22px; display: flex; flex-direction: column; }.service-card h3 { margin: auto 0 9px; font: 600 27px/1 var(--display); letter-spacing: -.055em; }.service-card p { max-width: 260px; min-height: 50px; margin: 0 0 20px; font-size: 12px; line-height: 1.55; }.service-card a { display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid currentColor; font-size: 11px; font-weight: 700; }.service-card a span { font-size: 18px; line-height: 11px; }.card-number { font: 500 10px var(--mono); opacity: .7; }.card-lime { color: var(--ink); background: var(--lime); }.card-dark { color: #f7f5ef; background: var(--navy); }.card-orange { color: var(--ink); background: var(--orange); }
.service-icon { position: absolute; top: 77px; right: 30px; width: 155px; height: 135px; }.icon-company { border: 2px solid var(--ink); transform: rotate(-5deg); background: linear-gradient(145deg, transparent 50%, rgba(255,255,255,.25) 51%); }.icon-company span { position: absolute; width: 13px; height: 13px; border: 2px solid var(--ink); }.icon-company span:nth-child(1) { top: 32px; left: 30px; }.icon-company span:nth-child(2) { top: 32px; right: 30px; }.icon-company span:nth-child(3) { bottom: 0; left: 55px; width: 39px; height: 52px; }.icon-bank { border: 2px solid var(--lime); border-radius: 70px 70px 0 0; transform: rotate(6deg); }.icon-bank::before { content: ""; position: absolute; left: -18px; right: -18px; top: 29px; height: 2px; background: var(--lime); }.icon-bank span { position: absolute; bottom: 0; width: 20px; height: 55px; border: 2px solid var(--lime); border-bottom: 0; }.icon-bank span:first-child { left: 32px; }.icon-bank span:last-child { right: 32px; }.icon-compass { display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; transform: rotate(-7deg); }.icon-compass::before,.icon-compass::after { content:""; position:absolute; background:var(--ink); }.icon-compass::before{ width:2px; height:100%;}.icon-compass::after{height:2px;width:100%;}.icon-compass span { position: relative; z-index: 1; font-size: 43px; }

.process { display: grid; grid-template-columns: 1fr 1.1fr; gap: 9vw; align-items: center; }.process-art { height: 490px; position: relative; }.paper { position: absolute; width: 275px; height: 365px; border: 1px solid var(--ink); }.paper-back { background: var(--orange); left: 6px; top: 55px; transform: rotate(-9deg); }.paper-front { right: 14px; top: 50px; background: #dce9c6; transform: rotate(8deg); box-shadow: 13px 14px 0 var(--ink); padding: 36px; }.paper-front span { display: block; font: 600 54px/.8 var(--display); letter-spacing: -.1em; }.paper-front i { display: block; margin-top: 27px; width: 98px; height: 1px; background: var(--ink); }.paper-front b { position: absolute; bottom: 30px; right: 32px; font: 500 13px var(--mono); }.scribble { position: absolute; left: 29px; bottom: 31px; font: 600 100px/1 cursive; color: var(--orange); transform: rotate(20deg); text-shadow: 2px 2px 0 var(--ink); }.process-copy h2 { margin: 31px 0 37px; }.process ol { padding: 0; margin: 0 0 39px; list-style: none; }.process li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }.process li:last-child { border-bottom: 1px solid var(--line); }.process li > span { color: var(--orange); font: 500 10px var(--mono); padding-top: 4px; }.process li h3 { margin: 0 0 6px; font: 700 14px var(--sans); }.process li p { max-width: 390px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.quote-section { color: #f8f5ef; background: var(--navy); padding: 90px 0; overflow: hidden; }.quote-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 11vw; }.quote-visual { height: 355px; position: relative; }.quote-circle { position: absolute; left: 10%; top: 16px; display: grid; place-items: center; width: 315px; height: 315px; border: 1px solid var(--lime); border-radius: 50%; transform: rotate(-11deg); }.quote-circle::after { content: ""; position: absolute; width: 245px; height: 245px; border: 1px dashed rgba(198,235,84,.8); border-radius: 50%; }.quote-circle span { position: relative; z-index: 1; color: var(--lime); font: 600 34px/.85 var(--display); text-align: center; letter-spacing: -.1em; }.quote-star { position: absolute; right: 4%; top: 38px; color: var(--orange); font-size: 89px; }.quote-section blockquote { position: relative; margin: 0; }.quote-mark { color: var(--orange); font: 600 123px/.5 Georgia, serif; }.quote-section blockquote p { max-width: 540px; margin: 16px 0 32px; font: 500 clamp(26px,3vw,44px)/1.12 var(--display); letter-spacing: -.065em; }.quote-section footer { display: flex; flex-direction: column; gap: 4px; font-size: 12px; }.quote-section footer span { color: #a9b7ca; font-size: 11px; }

.founders { padding-bottom: 113px; }.founder-heading { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; margin-bottom: 62px; }.founder-heading h2 { max-width: 630px; }.founder-items { border-top: 1px solid var(--line); }.founder-items article { min-height: 140px; display: grid; grid-template-columns: 9% 35% 45% 11%; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); transition: background .2s, padding .2s; }.founder-items article:hover { background: #e8f7bc; padding-left: 14px; padding-right: 14px; }.founder-index { color: var(--orange); font: 500 12px var(--mono); }.founder-items h3 { margin: 0; font: 600 20px/1.1 var(--display); letter-spacing: -.05em; }.founder-items p { max-width: 350px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }.line-arrow { font-size: 27px; text-align: right; }

.faq { padding: 103px 0 120px; background: #e9e6de; }.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 12vw; }.faq h2 { margin: 31px 0 15px; }.faq-layout > div > p { max-width: 220px; color: var(--muted); font-size: 13px; line-height: 1.6; }.accordion details { border-top: 1px solid var(--line); }.accordion details:last-child { border-bottom: 1px solid var(--line); }.accordion summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 10px; padding: 22px 0; font: 600 17px/1.3 var(--display); letter-spacing: -.04em; }.accordion summary::-webkit-details-marker { display: none; }.accordion summary span { font-size: 22px; font-weight: 400; transition: transform .2s; }.accordion details[open] summary span { transform: rotate(45deg); }.accordion details p { max-width: 590px; margin: -3px 0 23px; color: var(--muted); font-size: 13px; line-height: 1.65; }

.contact { position: relative; overflow: hidden; background: var(--navy); color: white; padding: 110px 0; }.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .8fr; gap: 12vw; }.light-kicker { color: var(--lime); }.contact h2 { margin: 30px 0 20px; color: #f8f5ef; }.contact h2 em { color: var(--lime); }.contact-layout > div p { max-width: 320px; margin-bottom: 0; color: #c6d2e2; font-size: 14px; line-height: 1.6; }.contact-form { display: flex; flex-direction: column; gap: 17px; }.contact-form label { color: #c6d2e2; font: 500 10px var(--mono); letter-spacing: .05em; }.contact-form input, .contact-form select { display: block; width: 100%; padding: 12px 0 10px; color: white; outline: 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.37); background: transparent; font: 600 14px var(--sans); }.contact-form input::placeholder { color: #8290a7; }.contact-form select { cursor: pointer; color: white; }.contact-form option { color: var(--ink); }.contact-form .button { align-self: flex-start; margin-top: 6px; }.form-note { margin: -7px 0 0; color: #8c9ab0; font-size: 10px; }.contact-shape { position: absolute; right: -113px; bottom: -193px; width: 580px; height: 580px; border: 1px solid rgba(198,235,84,.35); border-radius: 50%; box-shadow: 0 0 0 85px rgba(198,235,84,.03), 0 0 0 167px rgba(198,235,84,.025); }.contact-shape::after { content: "✦"; position: absolute; left: 18%; top: 15%; color: var(--orange); font-size: 91px; }

.footer { padding: 57px 0 20px; color: #dbe4ef; background: #09162e; }.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1.35fr .9fr; gap: 27px; padding-bottom: 61px; }.footer-brand { align-self: start; color: #f8f5ef; }.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }.footer-label { margin-bottom: 8px; color: var(--lime); font: 500 9px var(--mono); letter-spacing: .08em; }.footer-grid a:not(.brand) { font-size: 12px; }.footer-note { margin: 0; color: #a7b5ca; font: 500 12px/1.52 var(--mono); }.footer-base { display: flex; justify-content: space-between; padding-top: 19px; color: #7f8ca1; border-top: 1px solid rgba(255,255,255,.13); font: 500 9px var(--mono); }.footer-base a { color: var(--lime); }
.toast { opacity: 0; position: fixed; z-index: 20; left: 50%; bottom: 25px; transform: translate(-50%, 20px); transition: .3s; color: var(--ink); background: var(--lime); padding: 13px 18px; box-shadow: 5px 5px 0 var(--ink); font-size: 12px; font-weight: 700; pointer-events: none; }.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .hero { min-height: 770px; }.hero-sculpture { opacity: .65; right: -105px; top: 226px; transform: scale(.8); transform-origin: top right; }.hero-content { padding-top: 77px; }.service-grid { gap: 10px; }.service-card { min-height: 385px; }.service-card h3 { font-size: 22px; }.service-icon { transform: scale(.8); transform-origin: top right; }.intro-layout,.faq-layout { gap: 6vw; }.quote-layout { gap: 4vw; }.quote-circle { transform: scale(.8) rotate(-11deg); transform-origin: center; left: -13%; }.quote-star { right: 0; }.footer-grid { grid-template-columns: 1.3fr .85fr 1.25fr; }.footer-note { grid-column: 1; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 38px, 520px); }.announcement { font-size: 9px; gap: 7px; }.announcement .pulse-dot { display: none; }.announcement a { display: none; }.hero { min-height: 701px; }.nav { height: 80px; }.brand--logo img { width: 148px; }.nav-links { position: absolute; top: 65px; left: 0; right: 0; display: none; flex-direction: column; align-items: flex-start; gap: 0; padding: 14px 20px 19px; color: var(--ink); background: var(--lime); box-shadow: 7px 7px 0 var(--ink); }.nav-links.open { display: flex; }.nav-links > a:not(.nav-cta), .nav-cta { width: 100%; padding: 11px 0; border: 0; }.nav-cta { margin-top: 5px; border-top: 1px solid var(--ink); border-radius: 0; }.menu-toggle { display: block; position: relative; z-index: 5; }.hero-content { padding-top: 66px; }.eyebrow { font-size: 8px; }.hero h1 { margin: 16px 0 17px; font-size: clamp(54px, 17vw, 75px); }.hero-copy { width: 83%; font-size: 13px; }.hero-actions { gap: 19px; }.button { padding: 14px 16px; font-size: 12px; }.text-link { font-size: 11px; }.hero-proof { margin-top: 39px; }.hero-sculpture { right: -148px; top: 358px; transform: scale(.56); opacity: .72; }.hero-foot { bottom: 15px; font-size: 7px; }.hero-foot i { margin: 0 8px; }.ticker { padding: 12px 0; }.ticker-track { font-size: 11px; }.section { padding: 78px 0; } h2 { font-size: 41px; }.intro-layout, .services-heading, .process, .quote-layout, .founder-heading, .faq-layout, .contact-layout { grid-template-columns: 1fr; }.intro-layout { gap: 27px; margin-top: 26px; }.intro-layout p { font-size: 13px; }.stat-row { grid-template-columns: 1fr 1fr; margin-top: 60px; }.stat-row > div { min-height: 115px; padding: 17px 10px 17px 0; }.stat-row > div:nth-child(2) { border-right: 0; }.stat-row > div:nth-child(3) { border-top: 1px solid var(--line); }.stat-row > div:nth-child(4) { padding-left: 10px; border-top: 1px solid var(--line); }.stat-row > div:not(:first-child) { padding-left: 10px; }.stat-row strong { font-size: 33px; }.services-heading { gap: 25px; }.services-heading .section-kicker { grid-column: auto; margin-bottom: 0; }.services-heading p { margin: 0; font-size: 13px; }.service-grid { grid-template-columns: 1fr; margin-top: 39px; }.service-card { min-height: 320px; }.service-icon { top: 42px; right: 8px; transform: scale(.68); }.process { gap: 37px; }.process-art { height: 330px; }.paper { width: 190px; height: 250px; }.paper-front { padding: 25px; right: 9px; top: 30px; }.paper-back { left: 5px; top: 38px; }.paper-front span { font-size: 38px; }.paper-front b { bottom: 20px; right: 23px; }.scribble { font-size: 70px; bottom: 6px; }.process-copy h2 { margin: 26px 0 26px; }.quote-section { padding: 60px 0; }.quote-layout { gap: 15px; }.quote-visual { height: 230px; }.quote-circle { top: -26px; left: 50%; transform: translateX(-50%) scale(.65) rotate(-11deg); }.quote-star { top: 0; right: 12%; font-size: 55px; }.quote-section blockquote p { font-size: 29px; }.founder-heading { gap: 30px; margin-bottom: 37px; }.founder-items article { min-height: 172px; grid-template-columns: 8% 1fr 25px; grid-template-rows: auto auto; gap: 5px 12px; padding: 18px 0; }.founder-items h3 { font-size: 18px; }.founder-items p { grid-column: 2 / 4; font-size: 12px; }.line-arrow { grid-column: 3; grid-row: 1; }.faq { padding: 76px 0; }.faq-layout { gap: 34px; }.faq-layout > div > p { max-width: 300px; }.accordion summary { font-size: 15px; }.contact { padding: 77px 0; }.contact-layout { gap: 42px; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 37px 17px; }.footer-brand { grid-column: 1/-1; }.footer-note { grid-column: 1/-1; }.footer-base { gap: 11px; flex-wrap: wrap; font-size: 8px; }
}
