:root {
  --fw-ink: #0d1526;
  --fw-muted: #5c6b7e;
  --fw-blue: #00419f;
  --fw-cyan: #00a8ea;
  --fw-green: #46c93a;
  --fw-navy: #062567;
  --fw-navy-deep: #051634;
  --fw-line: #e7edf4;
  --fw-soft: #f4f7fb;
  --fw-gradient: linear-gradient(115deg, #00419f 0%, #00a8ea 54%, #46c93a 100%);
  --fw-shadow: 0 26px 64px rgba(8, 22, 52, .12);
  --fw-shadow-sm: 0 14px 34px rgba(8, 22, 52, .08);
  --fw-radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--fw-ink);
  font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.fw-wrap {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
}

/* ---------- Header ---------- */
.fw-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(231, 237, 244, .9);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.fw-topbar {
  border-bottom: 1px solid rgba(231, 237, 244, .8);
  color: #5d6875;
  font-size: 12.5px;
}

.fw-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 36px;
}

.fw-topbar p { margin: 0; }
.fw-topbar a { color: var(--fw-blue); font-weight: 800; }
.fw-top-links { display: flex; align-items: center; gap: 20px; white-space: nowrap; }

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

.fw-brand img { width: 138px; }

.fw-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #15233c;
  font-size: 14px;
  font-weight: 800;
}

.fw-menu a { position: relative; padding: 10px 0; }
.fw-menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--fw-gradient);
  opacity: 0;
  transform: scaleX(.3);
  transition: opacity .2s ease, transform .2s ease;
}
.fw-menu a:hover { color: var(--fw-blue); }
.fw-menu a:hover::after { opacity: 1; transform: scaleX(1); }

.fw-nav-actions { display: flex; align-items: center; gap: 12px; }

.fw-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid #dce5ee;
  border-radius: 10px;
  color: var(--fw-blue);
  font-size: 13px;
  font-weight: 900;
  background: #fff;
}

.fw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.fw-btn:hover { transform: translateY(-2px); }
.fw-btn-primary {
  color: #fff;
  background: var(--fw-gradient);
  box-shadow: 0 16px 32px rgba(0, 168, 234, .26);
}
.fw-btn-ghost {
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}
.fw-btn-light {
  color: var(--fw-blue);
  background: #fff;
  box-shadow: var(--fw-shadow-sm);
}
.fw-btn-sm { min-height: 42px; padding: 0 18px; }

/* ---------- Hero ---------- */
.fw-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(70, 201, 58, .26), transparent 32%),
    radial-gradient(circle at 8% 24%, rgba(0, 168, 234, .3), transparent 34%),
    linear-gradient(135deg, #051634 0%, #062567 44%, #00419f 100%);
}
.fw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.1));
  pointer-events: none;
}

.fw-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .8fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 7vw, 92px) 0;
}

.fw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: #c9f7ff;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .06);
}
.fw-eyebrow img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

.fw-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(38px, 5.4vw, 70px);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.fw-hero h1 em {
  font-style: normal;
  background: linear-gradient(110deg, #7ff0ff, #9bff8e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fw-hero-lead {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
}

.fw-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.fw-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.fw-hero-stats div strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  background: linear-gradient(110deg, #fff, #9bff8e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fw-hero-stats div span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 700;
}

/* Hero transfer card visual */
.fw-flow {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
}
.fw-flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.fw-flow-head strong { font-size: 16px; }
.fw-flow-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0c3406;
  background: var(--fw-green);
  font-size: 12px;
  font-weight: 1000;
}
.fw-flow-head span::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #0c3406;
}
.fw-flow-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
}
.fw-flow-node i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
}
.fw-flow-node i img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.fw-flow-node b { display: block; font-size: 15px; }
.fw-flow-node small { display: block; color: rgba(255, 255, 255, .62); font-size: 12.5px; }
.fw-flow-node em {
  margin-left: auto;
  font-style: normal;
  font-weight: 900;
  color: #9bff8e;
}
.fw-flow-arrow {
  display: flex;
  justify-content: center;
  padding: 8px 0;
  color: rgba(255, 255, 255, .5);
}
.fw-flow-arrow span {
  width: 2px; height: 24px;
  background: linear-gradient(180deg, var(--fw-cyan), var(--fw-green));
  border-radius: 2px;
  position: relative;
}
.fw-flow-arrow span::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -4px;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  border-right: 2px solid var(--fw-green);
  border-bottom: 2px solid var(--fw-green);
}
.fw-flow-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}
.fw-flow-foot b { color: #fff; }

/* ---------- Currency marquee ---------- */
.fw-currency-bar {
  background: var(--fw-navy-deep);
  color: #fff;
  overflow: hidden;
}
.fw-currency-track {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  overflow-x: auto;
  scrollbar-width: none;
}
.fw-currency-track::-webkit-scrollbar { display: none; }
.fw-currency-track span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  font-size: 13.5px;
  font-weight: 800;
  white-space: nowrap;
}
.fw-currency-track span::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fw-green);
  box-shadow: 0 0 14px rgba(70, 201, 58, .8);
}

/* ---------- Tab switch ---------- */
.fw-tab-input { position: absolute; opacity: 0; pointer-events: none; }

.fw-switch-wrap {
  position: sticky;
  top: 110px;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 26px 0;
  background: linear-gradient(180deg, #fff 62%, rgba(255, 255, 255, 0));
}
.fw-switch {
  display: inline-flex;
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--fw-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--fw-shadow);
}
.fw-switch label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--fw-muted);
  font-size: 15px;
  font-weight: 900;
  transition: color .2s ease, background .2s ease;
}
.fw-switch label img {
  width: 17px; height: 17px;
  opacity: .55;
}
.fw-tab-fund:checked ~ .fw-switch-wrap label[for="fw-tab-fund"],
.fw-tab-with:checked ~ .fw-switch-wrap label[for="fw-tab-with"] {
  color: #fff;
  background: var(--fw-gradient);
  box-shadow: 0 12px 26px rgba(0, 168, 234, .3);
}
.fw-tab-fund:checked ~ .fw-switch-wrap label[for="fw-tab-fund"] img,
.fw-tab-with:checked ~ .fw-switch-wrap label[for="fw-tab-with"] img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.fw-panel { display: none; }
.fw-tab-fund:checked ~ .fw-panel-fund { display: block; }
.fw-tab-with:checked ~ .fw-panel-with { display: block; }

/* ---------- Section scaffolding ---------- */
.fw-section { padding: clamp(56px, 7vw, 96px) 0; }

.fw-section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.fw-section-head.left { margin-left: 0; text-align: left; }
.fw-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--fw-blue);
  background: rgba(0, 168, 234, .1);
  font-size: 12.5px;
  font-weight: 1000;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.fw-section-head h2 {
  margin: 0;
  color: var(--fw-navy-deep);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.14;
  letter-spacing: -.01em;
}
.fw-section-head p {
  margin: 16px auto 0;
  max-width: 640px;
  color: var(--fw-muted);
  font-size: 16px;
  line-height: 1.78;
}
.fw-section-head.left p { margin-left: 0; }

/* ---------- Funding method rows ---------- */
.fw-methods { background: linear-gradient(180deg, #fff, #f5f9ff); }
.fw-method-list { display: grid; gap: 14px; }
.fw-method {
  position: relative;
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr) 168px 152px;
  grid-template-areas: "id body meta go";
  align-items: center;
  gap: 28px;
  padding: 22px 28px 22px 26px;
  border: 1px solid var(--fw-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--fw-shadow-sm);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.fw-method::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--fw-gradient);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .26s ease;
}
.fw-method:hover {
  transform: translateX(5px);
  border-color: rgba(0, 168, 234, .3);
  box-shadow: var(--fw-shadow);
}
.fw-method:hover::before { transform: scaleY(1); }

.fw-method-id { grid-area: id; display: flex; align-items: center; gap: 16px; }
.fw-method-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 65, 159, .1), rgba(0, 168, 234, .12));
}
.fw-method-logo img {
  width: 26px; height: 26px;
  filter: invert(20%) sepia(92%) saturate(1840%) hue-rotate(202deg) brightness(82%) contrast(101%);
}
.fw-method-id h3 { margin: 0; color: var(--fw-navy-deep); font-size: 19px; line-height: 1.2; }
.fw-method-id small {
  display: block;
  margin-top: 4px;
  color: var(--fw-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.fw-method-body { grid-area: body; }
.fw-method-body p { margin: 0 0 12px; color: var(--fw-muted); font-size: 14px; line-height: 1.66; }
.fw-ccy { display: flex; flex-wrap: wrap; gap: 6px; }
.fw-ccy span {
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--fw-soft);
  color: #3a4658;
  font-size: 12px;
  font-weight: 800;
}

.fw-method-meta {
  grid-area: meta;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fw-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 900;
  white-space: nowrap;
}
.fw-time img { width: 13px; height: 13px; }
.fw-time-instant { color: #0c3406; background: rgba(70, 201, 58, .18); }
.fw-time-instant img { filter: invert(38%) sepia(64%) saturate(560%) hue-rotate(70deg) brightness(92%) contrast(88%); }
.fw-time-slow { color: #8a5a00; background: rgba(255, 176, 32, .18); }
.fw-time-slow img { filter: invert(52%) sepia(80%) saturate(900%) hue-rotate(2deg) brightness(95%) contrast(95%); }
.fw-fee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fw-green);
  font-size: 12.5px;
  font-weight: 900;
  white-space: nowrap;
}
.fw-fee::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(70, 201, 58, .16);
  font-size: 12px;
}

.fw-method-go {
  grid-area: go;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--fw-line);
  border-radius: 10px;
  color: var(--fw-blue);
  font-size: 14px;
  font-weight: 900;
  background: #fff;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.fw-method-go span { transition: transform .2s ease; }
.fw-method:hover .fw-method-go { color: #fff; background: var(--fw-gradient); border-color: transparent; }
.fw-method:hover .fw-method-go span { transform: translateX(4px); }

/* ---------- Withdrawal cutoff banner ---------- */
.fw-with { background: #fff; }
.fw-cutoff {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  margin-bottom: 48px;
  border-radius: var(--fw-radius);
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(70, 201, 58, .3), transparent 40%),
    linear-gradient(120deg, var(--fw-navy-deep), var(--fw-blue));
  box-shadow: var(--fw-shadow);
}
.fw-cutoff-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
}
.fw-cutoff-icon img { width: 30px; height: 30px; filter: brightness(0) invert(1); }
.fw-cutoff h3 { margin: 0 0 5px; font-size: 20px; }
.fw-cutoff p { margin: 0; color: rgba(255, 255, 255, .8); font-size: 14.5px; }
.fw-cutoff strong {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  background: linear-gradient(110deg, #fff, #9bff8e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.fw-cutoff strong small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  -webkit-text-fill-color: rgba(255, 255, 255, .65);
}

/* withdrawal timeline */
.fw-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.fw-step {
  position: relative;
  padding: 26px 26px 26px 70px;
  border: 1px solid var(--fw-line);
  border-radius: var(--fw-radius);
  background: #fff;
  box-shadow: var(--fw-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fw-step:hover { transform: translateY(-4px); box-shadow: var(--fw-shadow); }
.fw-step b {
  position: absolute;
  left: 24px; top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  color: #fff;
  background: var(--fw-gradient);
  font-size: 15px;
  font-weight: 1000;
}
.fw-step h3 { margin: 0 0 8px; color: var(--fw-navy-deep); font-size: 19px; }
.fw-step p { margin: 0; color: var(--fw-muted); font-size: 14.5px; line-height: 1.7; }

/* withdrawal method-specific rules accordion-ish list */
.fw-rules {
  display: grid;
  gap: 12px;
  margin-top: 48px;
}
.fw-rule {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid var(--fw-line);
  border-left: 4px solid var(--fw-cyan);
  border-radius: 14px;
  background: var(--fw-soft);
}
.fw-rule i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--fw-shadow-sm);
}
.fw-rule i img {
  width: 22px; height: 22px;
  filter: invert(20%) sepia(92%) saturate(1840%) hue-rotate(202deg) brightness(82%) contrast(101%);
}
.fw-rule h4 { margin: 0 0 5px; color: var(--fw-navy-deep); font-size: 16.5px; }
.fw-rule p { margin: 0; color: var(--fw-muted); font-size: 14px; line-height: 1.68; }

/* ---------- Comparison table ---------- */
.fw-table-section { background: linear-gradient(180deg, #f5f9ff, #fff); }
.fw-table-card {
  overflow: hidden;
  border: 1px solid var(--fw-line);
  border-radius: var(--fw-radius);
  background: #fff;
  box-shadow: var(--fw-shadow-sm);
}
.fw-table-scroll { overflow-x: auto; }
.fw-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.fw-table thead th {
  padding: 18px 20px;
  text-align: left;
  color: #fff;
  background: var(--fw-navy-deep);
  font-size: 13.5px;
  font-weight: 900;
  white-space: nowrap;
}
.fw-table tbody td {
  padding: 16px 20px;
  border-top: 1px solid var(--fw-line);
  color: #2c3a4f;
  font-size: 14px;
  vertical-align: top;
}
.fw-table tbody tr:nth-child(even) { background: #fafcff; }
.fw-table tbody td:first-child { font-weight: 900; color: var(--fw-navy-deep); }
.fw-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.fw-pill-zero { color: var(--fw-green); background: rgba(70, 201, 58, .14); }
.fw-pill-fast { color: var(--fw-blue); background: rgba(0, 168, 234, .12); }

/* ---------- Info / security cards ---------- */
.fw-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.fw-info {
  padding: 28px 24px;
  border: 1px solid var(--fw-line);
  border-radius: var(--fw-radius);
  background: #fff;
  box-shadow: var(--fw-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fw-info:hover { transform: translateY(-5px); box-shadow: var(--fw-shadow); }
.fw-info i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--fw-gradient);
  margin-bottom: 18px;
}
.fw-info i img { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.fw-info h3 { margin: 0 0 10px; color: var(--fw-navy-deep); font-size: 18px; }
.fw-info p { margin: 0; color: var(--fw-muted); font-size: 14px; line-height: 1.7; }

/* ---------- Final CTA ---------- */
.fw-final { padding: clamp(40px, 5vw, 64px) 0 72px; }
.fw-final-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: clamp(36px, 5vw, 56px);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(70, 201, 58, .3), transparent 38%),
    radial-gradient(circle at 12% 80%, rgba(0, 168, 234, .28), transparent 40%),
    linear-gradient(125deg, var(--fw-navy-deep), var(--fw-navy) 60%, var(--fw-blue));
  box-shadow: var(--fw-shadow);
}
.fw-final-inner h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
}
.fw-final-inner p {
  margin: 14px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.7;
}
.fw-final-actions { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }

/* ---------- Footer ---------- */
.fw-footer {
  padding: 60px 0 28px;
  color: #dbe8ff;
  background: var(--fw-navy-deep);
}
.fw-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr .7fr;
  gap: 40px;
}
.fw-footer-logo { width: 150px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.fw-footer p { max-width: 360px; margin: 0; color: rgba(255, 255, 255, .68); line-height: 1.75; font-size: 14px; }
.fw-footer h3 { margin: 0 0 14px; color: #fff; font-size: 15px; }
.fw-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.fw-footer a { color: rgba(255, 255, 255, .7); font-size: 14px; }
.fw-footer a:hover { color: #fff; }
.fw-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
}

.fw-menu-btn { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .fw-menu { display: none; }
  .fw-hero-grid { grid-template-columns: 1fr; }
  .fw-method {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "id go"
      "body body"
      "meta meta";
    align-items: center;
    gap: 18px 24px;
  }
  .fw-method-go { align-self: center; }
  .fw-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fw-footer-grid { grid-template-columns: 1fr 1fr; }
  .fw-switch-wrap { top: 96px; }
}

@media (max-width: 720px) {
  .fw-wrap { width: min(100% - 28px, 1240px); }
  .fw-topbar { display: none; }
  .fw-method {
    grid-template-columns: 1fr;
    grid-template-areas:
      "id"
      "body"
      "meta"
      "go";
    align-items: start;
    gap: 16px;
  }
  .fw-method-go { justify-self: stretch; }
  .fw-timeline { grid-template-columns: 1fr; }
  .fw-info-grid { grid-template-columns: 1fr; }
  .fw-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .fw-cutoff { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .fw-cutoff-icon { margin: 0 auto; }
  .fw-cutoff strong { white-space: normal; }
  .fw-final-inner { grid-template-columns: 1fr; }
  .fw-final-actions { width: 100%; }
  .fw-copyright { flex-direction: column; align-items: flex-start; }
  .fw-switch label { padding: 11px 18px; font-size: 14px; }
  .fw-switch-wrap { top: 80px; }
}
