@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
  font-family: 'DM Sans', Arial, sans-serif;
  color: #01102C;
  background: #01102C;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --navy: #01102C;
  --deep: #01102C;
  --solo: #14C1F3;
  --mint: #5AE9B7;
  --teal: #40D5C8;
  --cloud: #F6F6F3;
  --blue: #14C1F3;
  --cyan: #d7f4f2;
  --yellow: #5AE9B7;
  --cream: #F6F6F3;
  --line: #d5e4e4;
  --muted: #5d6f7c;
  --white: #F6F6F3;
  --gradient: linear-gradient(135deg, #14C1F3 0%, #40D5C8 50%, #5AE9B7 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--navy); color: var(--navy); }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 64px)); margin: 0 auto; }

.site-header { position: absolute; z-index: 5; top: 0; left: 0; right: 0; color: var(--cloud); }
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; color: var(--cloud); }
.brand-logo { display: block; width: 150px; height: 48px; object-fit: cover; object-position: center; border-radius: 10px; }
.brand-mark { height: 25px; width: 31px; display: inline-flex; gap: 3px; align-items: flex-end; }
.brand-mark span { display: block; width: 8px; border-radius: 1px 1px 4px 4px; background: var(--gradient); }
.brand-mark span:nth-child(1) { height: 13px; }
.brand-mark span:nth-child(2) { height: 20px; }
.brand-mark span:nth-child(3) { height: 25px; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 500; }
.main-nav a:not(.button):not(.nav-login) { opacity: .88; transition: opacity .2s, color .2s; }
.main-nav a:not(.button):not(.nav-login):hover { opacity: 1; color: var(--solo); }
.nav-login { padding-left: 8px; color: var(--solo); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 0;
  border-radius: 2px;
  padding: 17px 24px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s, background .2s, box-shadow .2s, filter .2s;
}
.button:hover { transform: translateY(-2px); }
.button-small,
.button-primary {
  color: var(--navy);
  background: var(--gradient);
  box-shadow: 0 12px 22px #01102c55;
}
.button-small:hover,
.button-primary:hover { filter: brightness(1.06); }

.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--cloud); margin: 5px; }

.hero-section { min-height: 760px; position: relative; overflow: hidden; color: var(--cloud); display: flex; align-items: center; }
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/28245665/pexels-photo-28245665.jpeg?auto=compress&cs=tinysrgb&h=650&w=940');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #01102Cee 0%, #01102Cca 42%, #01102C40 100%),
    linear-gradient(0deg, #01102Cd9 0%, transparent 42%);
}
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: center; padding-top: 60px; }

.eyebrow { margin: 0 0 22px; color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 1.7px; text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.eyebrow.light { color: var(--mint); }
.eyebrow-line { display: inline-block; width: 30px; height: 1px; background: currentColor; }

.hero-copy h1 { font-size: clamp(60px, 7.6vw, 104px); line-height: .9; letter-spacing: -5px; margin: 0 0 28px; font-weight: 600; color: var(--cloud); }
.hero-copy em,
.section-intro em,
.steps-header em,
.app-copy em,
.faq-grid em,
.final-cta em { font-family: 'Playfair Display', serif; font-weight: 500; letter-spacing: -3px; }
.hero-description { max-width: 385px; color: #d7e8ec; font-size: 17px; line-height: 1.6; margin: 0 0 34px; }
.hero-actions { display: flex; align-items: center; gap: 29px; }
.light-link { color: var(--solo) !important; }
.text-link { font-size: 13px; color: var(--navy); font-weight: 700; display: inline-flex; gap: 10px; align-items: center; border-bottom: 1px solid var(--teal); padding-bottom: 5px; }
.text-link.light-link { border-bottom-color: #14C1F366; }
.text-link span { font-size: 18px; line-height: 10px; }
.hero-note { margin-top: 35px; color: #bed8de; font-size: 11px; display: flex; align-items: center; gap: 9px; }
.shield-icon { display: grid; place-items: center; width: 18px; height: 18px; border: 1px solid var(--mint); border-radius: 50%; font-size: 10px; color: var(--mint); }

.transfer-card { background: var(--cloud); color: var(--navy); border-radius: 3px; padding: 27px 28px 21px; box-shadow: 0 24px 50px #01102C88; border-top: 3px solid transparent; border-image: var(--gradient) 1; }
.card-heading { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 25px; }
.card-label { margin: 0 0 7px; color: #5d7a86; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.card-heading h2 { font-size: 20px; letter-spacing: -.7px; margin: 0; line-height: 1.2; }
.secure-dot { color: #0f7a62; font-size: 10px; white-space: nowrap; }
.field-group label { font-size: 11px; color: var(--muted); display: block; margin-bottom: 7px; }
.amount-field { height: 55px; border: 1px solid var(--line); display: flex; align-items: center; padding: 0 16px; background: #fff; }
.amount-field:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px #40D5C824; }
.currency-code,
.amount-field select { border: 0; background: transparent; color: var(--navy); font-size: 13px; font-weight: 700; outline: 0; }
.amount-field input,
.amount-field output { border: 0; outline: 0; text-align: right; min-width: 0; flex: 1; background: transparent; color: var(--navy); font-weight: 600; font-size: 21px; }
.amount-field input::-webkit-inner-spin-button { appearance: none; }
.amount-field select { appearance: none; cursor: pointer; }
.currency-symbol { font-size: 14px; color: #8ca0ab; padding-left: 11px; }
.swap-row { height: 27px; display: flex; align-items: center; gap: 12px; }
.swap-row span { height: 1px; background: var(--line); flex: 1; }
.swap-button { margin-top: 0; width: 29px; height: 29px; border-radius: 50%; border: 1px solid var(--teal); color: var(--navy); background: var(--cloud); font-size: 17px; line-height: 1; transition: transform .2s, background .2s; }
.swap-button:hover { transform: rotate(180deg); background: var(--gradient); }
.quote-details { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 16px; display: grid; gap: 10px; font-size: 11px; }
.quote-details div { display: flex; justify-content: space-between; color: var(--muted); }
.quote-details strong { color: var(--navy); font-size: 11px; }
.quote-details .fee-free { color: #0f7a62; }
.card-button { width: 100%; margin-top: 22px; background: var(--gradient); color: var(--navy); padding: 16px 14px; }
.card-button:hover { filter: brightness(1.05); }
.card-footnote { font-size: 9px; text-align: center; color: #93a1a8; margin: 13px 0 0; }

.scroll-cue { position: absolute; bottom: 28px; left: max(32px, calc((100% - 1160px) / 2)); z-index: 1; color: var(--cloud); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.scroll-cue span { height: 32px; width: 1px; background: var(--mint); }

.marquee-strip { height: 67px; background: linear-gradient(90deg, #14C1F3 0%, #40D5C8 50%, #5AE9B7 100%); overflow: hidden; display: flex; align-items: center; color: var(--navy); }
.marquee-track { white-space: nowrap; display: flex; align-items: center; gap: 28px; font-size: 12px; font-weight: 700; letter-spacing: 2px; animation: marquee 28s linear infinite; }
.marquee-track b { font-size: 16px; }

.section-space { padding: 120px 0; }

.intro-section { background: var(--navy); color: var(--cloud); }
.intro-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.intro-section h2 { color: var(--cloud); }
.intro-section .text-link { color: var(--solo); border-bottom-color: #14C1F366; }
.section-intro h2,
.steps-header h2,
.app-copy h2,
.faq-grid h2,
.final-cta h2 { font-size: clamp(45px, 5.4vw, 72px); line-height: .98; letter-spacing: -3.5px; font-weight: 600; margin: 0; }
.intro-side { max-width: 370px; padding-top: 51px; }
.intro-side p,
.steps-summary,
.faq-lead { font-size: 17px; line-height: 1.65; color: #637683; margin: 0 0 25px; }
.intro-side p { color: #b7cdd4; }

.stats-section { background: #06152f; color: var(--cloud); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-card { min-height: 268px; padding: 50px 42px 44px; border-right: 1px solid #1a3a52; }
.stat-card:last-child { border-right: 0; }
.stat-card.featured-stat { background: linear-gradient(180deg, #0a2a3d 0%, #083445 100%); box-shadow: inset 0 0 0 1px #40D5C833; }
.stat-number { display: block; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 61px; line-height: 1; letter-spacing: -4px; font-weight: 600; margin-bottom: 22px; }
.stat-unit { font-size: 29px; letter-spacing: -1px; }
.stat-card h3 { font-size: 16px; margin: 0 0 13px; letter-spacing: -.3px; color: var(--cloud); }
.stat-card p { color: #9db4bc; font-size: 13px; line-height: 1.6; max-width: 240px; margin: 0; }

.steps-section { background: var(--cloud); }
.steps-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 62px; }
.steps-summary { max-width: 280px; margin: 0 0 6px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; min-height: 305px; background: #eef7f6; padding: 30px 32px; transition: transform .25s, box-shadow .25s; }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 18px 30px #01102C18; }
.step-card:nth-child(2) { background: #e7f6fb; }
.step-card:nth-child(3) { background: #e9faf3; }
.step-number { font-size: 11px; color: #6b8790; font-weight: 700; letter-spacing: 1px; }
.step-icon { font-size: 35px; color: var(--teal); margin: 32px 0 25px; }
.step-card h3 { font-size: 18px; margin: 0 0 12px; }
.step-card p { font-size: 13px; line-height: 1.65; color: #6b7d86; max-width: 245px; margin: 0; }
.step-card > a { position: absolute; right: 30px; bottom: 29px; color: var(--teal); font-size: 24px; }

.app-section { background: var(--navy); overflow: hidden; color: var(--cloud); }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 570px; align-items: center; }
.phone-wrap { height: 570px; position: relative; display: flex; align-items: flex-end; justify-content: center; }
.phone-wrap:before {
  content: '';
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: radial-gradient(circle, #14C1F355 0%, #40D5C822 45%, transparent 70%);
  bottom: -140px;
  left: 30px;
}
.phone { position: relative; z-index: 1; width: 255px; height: 505px; border: 7px solid #0c2a4a; border-radius: 38px; background: var(--cloud); box-shadow: 0 18px 35px #01102C99; transform: rotate(-7deg); overflow: hidden; }
.phone-notch { position: absolute; z-index: 2; top: 0; left: 50%; transform: translateX(-50%); height: 21px; width: 95px; border-radius: 0 0 15px 15px; background: #0c2a4a; }
.phone-screen { height: 100%; padding: 55px 20px 20px; background: #eef8f6; color: var(--navy); }
.app-mini-top { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; }
.phone-screen > p { font-size: 12px; line-height: 1.35; margin: 25px 0 18px; }
.phone-screen > p strong { font-size: 25px; }
.balance-card { padding: 19px 15px; background: var(--navy); color: var(--cloud); border-radius: 10px; }
.balance-card small { display: block; color: #9ec8d4; font-size: 8px; margin-bottom: 10px; }
.balance-card strong { display: block; font-size: 22px; margin-bottom: 10px; }
.balance-card span { font-size: 9px; color: var(--mint); }
.balance-card i { font-style: normal; }
.phone-caption { font-size: 10px !important; font-weight: 700; margin: 25px 0 10px !important; }
.mini-transfer { display: flex; align-items: center; gap: 8px; padding: 11px 0; border-bottom: 1px solid #dae5e5; font-size: 9px; }
.mini-transfer > span:nth-child(2) { flex: 1; font-weight: 700; }
.mini-transfer small { display: block; color: #8b9ca2; font-weight: 400; margin-top: 3px; }
.mini-transfer strong { font-size: 9px; }
.mini-flag { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; color: var(--navy); background: var(--mint); font-size: 7px; }
.mini-flag.blue { background: var(--solo); }
.app-copy { max-width: 445px; padding-left: 50px; }
.app-copy h2 { margin-bottom: 30px; color: var(--cloud); }
.app-copy > p:not(.eyebrow) { font-size: 16px; color: #b8ccd3; line-height: 1.65; max-width: 350px; margin: 0 0 30px; }
.store-buttons { display: flex; gap: 12px; }
.store-button { display: flex; align-items: center; gap: 10px; border: 1px solid #3d6b7a; border-radius: 3px; padding: 9px 13px; color: var(--cloud); min-width: 135px; transition: border-color .2s, background .2s; }
.store-button:hover { border-color: var(--solo); background: #0a2438; }
.store-button span:last-child { font-size: 14px; font-weight: 700; }
.store-button small { display: block; font-size: 7px; font-weight: 400; letter-spacing: .2px; }
.store-icon { font-size: 20px; color: var(--solo); }
.store-icon.play { font-size: 16px; }

.faq-section { background: var(--cloud); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; }
.faq-lead { max-width: 280px; margin-top: 28px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 0; }
summary { list-style: none; cursor: pointer; padding: 21px 0; font-size: 15px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary span { font-size: 23px; font-weight: 400; color: var(--teal); transition: transform .2s; }
details[open] summary span { transform: rotate(45deg); color: var(--solo); }
details p { color: #6b7d86; font-size: 13px; line-height: 1.65; max-width: 550px; margin: -4px 0 21px; }

.final-cta { background: var(--navy); color: var(--cloud); text-align: center; padding: 104px 0 110px; position: relative; }
.final-cta:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #14C1F322 0%, transparent 58%);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { margin: 0 auto 35px; color: var(--cloud); }
.final-cta .button { margin: auto; }

.site-footer { background: #010b1e; color: #bacbd2; padding: 65px 0 23px; }
.brand-dark { margin-bottom: 20px; }
.brand-dark .brand-logo { width: 140px; height: 44px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; align-items: start; }
.footer-top p,
.footer-address { font-size: 12px; line-height: 1.7; margin: 7px 0 0; }
.footer-address { color: #87a2af; }
.footer-reg { display: block; margin-top: 12px; color: #9db4bc; }
.footer-bottom { border-top: 1px solid #1a3a52; margin-top: 60px; padding-top: 20px; display: flex; justify-content: space-between; font-size: 10px; color: #78919e; }
.footer-bottom div { display: flex; gap: 25px; }
.footer-bottom a:hover { color: var(--solo); }

.toast {
  position: fixed;
  z-index: 10;
  right: 24px;
  bottom: 24px;
  background: var(--navy);
  color: var(--cloud);
  padding: 15px 19px;
  border-radius: 3px;
  font-size: 12px;
  box-shadow: 0 10px 30px #01102C88;
  border-left: 3px solid var(--mint);
  transform: translateY(120px);
  opacity: 0;
  transition: transform .3s, opacity .3s;
}
.toast.show { transform: translateY(0); opacity: 1; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-35%); }
}

@media (max-width: 900px) {
  .main-nav { gap: 18px; }
  .hero-content { grid-template-columns: 1fr 360px; gap: 35px; }
  .app-copy { padding-left: 20px; }
  .faq-grid { gap: 50px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 40px, 560px); }
  .nav-wrap { height: 75px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    padding: 22px;
    background: var(--navy);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    box-shadow: 0 12px 25px #01102C80;
    border: 1px solid #1a3a52;
  }
  .main-nav.open { display: flex; }
  .main-nav .button { text-align: center; }
  .hero-section { min-height: auto; padding: 120px 0 70px; }
  .hero-content { grid-template-columns: 1fr; gap: 45px; padding-top: 20px; }
  .hero-copy h1 { font-size: 65px; letter-spacing: -4px; }
  .hero-description { font-size: 15px; }
  .transfer-card { width: 100%; max-width: 410px; }
  .scroll-cue { display: none; }
  .section-space { padding: 82px 0; }
  .intro-section .container,
  .app-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .intro-side { padding-top: 0; }
  .section-intro h2,
  .steps-header h2,
  .app-copy h2,
  .faq-grid h2,
  .final-cta h2 { letter-spacing: -2.5px; }
  .stats-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: auto; border-right: 0; border-bottom: 1px solid #1a3a52; padding: 38px 32px; }
  .stat-card:last-child { border-bottom: 0; }
  .steps-header { display: block; margin-bottom: 40px; }
  .steps-summary { margin-top: 25px; }
  .step-card { min-height: 260px; }
  .phone-wrap { height: 440px; order: 2; }
  .phone { width: 215px; height: 425px; }
  .phone-wrap:before { width: 300px; height: 300px; left: 50%; transform: translateX(-50%); bottom: -100px; }
  .app-grid { padding-top: 50px; }
  .app-copy { padding: 0 0 70px; order: 1; }
  .store-buttons { flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr; gap: 14px; }
  .footer-bottom { display: block; line-height: 1.7; margin-top: 45px; }
  .footer-bottom div { margin-top: 12px; }
  .hero-actions { flex-wrap: wrap; }
  .marquee-strip { height: 57px; }
  .card-heading h2 { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .button,
  .step-card { transition: none; }
}
