/* STARS BUY — professional trust-first interface */
:root {
  --bg: #07131d;
  --bg-elevated: #0a1925;
  --surface: #0e2130;
  --surface-strong: #12293a;
  --surface-soft: rgba(255, 255, 255, 0.045);
  --text: #eef5f8;
  --text-soft: #a9bdc8;
  --text-muted: #78919e;
  --line: rgba(203, 226, 237, 0.11);
  --line-strong: rgba(203, 226, 237, 0.19);
  --accent: #5bd4ff;
  --accent-strong: #25bce8;
  --accent-soft: rgba(91, 212, 255, 0.12);
  --success: #72e2ad;
  --success-soft: rgba(114, 226, 173, 0.12);
  --warning: #f3c969;
  --danger: #ff8993;
  --danger-soft: rgba(255, 137, 147, 0.11);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.18), 0 14px 36px rgba(0, 0, 0, 0.16), 0 34px 80px rgba(0, 0, 0, 0.12);
  --shadow-float: 0 2px 6px rgba(0, 0, 0, 0.2), 0 18px 44px rgba(0, 0, 0, 0.2), 0 42px 100px rgba(0, 0, 0, 0.16);
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 48% -12%, rgba(57, 160, 202, 0.14), transparent 38rem),
    linear-gradient(180deg, #07131d 0%, #081722 46%, #07131d 100%);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}
body.menu-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
svg { display: block; }
[hidden] { display: none !important; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { text-wrap: balance; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: #041018;
  background: var(--accent);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.ambient { position: fixed; z-index: -1; border-radius: 999px; filter: blur(110px); pointer-events: none; opacity: 0.22; }
.ambient--one { width: 420px; height: 420px; top: 8%; right: -180px; background: #1684a8; }
.ambient--two { width: 340px; height: 340px; top: 56%; left: -170px; background: #176a75; opacity: 0.14; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(7, 19, 29, 0.72);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(7, 19, 29, 0.93);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18), 0 12px 34px rgba(0, 0, 0, 0.12);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font-size: 18px; font-weight: 800; letter-spacing: -0.03em; }
.brand > span:last-child > span { color: var(--accent); }
.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: var(--accent);
  background: linear-gradient(145deg, rgba(91, 212, 255, 0.14), rgba(91, 212, 255, 0.06));
  box-shadow: inset 0 0 0 1px rgba(91, 212, 255, 0.18), 0 5px 14px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}
.brand:hover .brand-mark { transform: translateY(-1px) rotate(-3deg); color: #9ae7ff; }
.brand-mark svg { width: 20px; height: 20px; }
.desktop-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.desktop-nav a, .mobile-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 11px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, background-color 180ms ease;
}
.desktop-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.045); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  color: #041018;
  background: var(--accent);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16), 0 8px 22px rgba(37, 188, 232, 0.18);
  transition: transform 150ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.header-cta:hover { transform: translateY(-1px); background: #77ddff; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18), 0 12px 28px rgba(37, 188, 232, 0.23); }
.header-cta:active { transform: scale(0.96); }
.menu-button { display: none; width: 44px; height: 44px; margin-left: auto; padding: 0; border: 0; border-radius: 12px; background: rgba(255, 255, 255, 0.045); cursor: pointer; }
.menu-button span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--text); transition: transform 200ms ease, opacity 160ms ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { padding: 8px 20px 18px; border-top: 1px solid var(--line); }
.mobile-nav a { width: 100%; padding-inline: 14px; }

/* Shared controls */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 150ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}
.button svg { width: 18px; height: 18px; transition: transform 180ms ease, opacity 180ms ease; }
.button:hover svg { transform: translateX(2px); }
.button:active { transform: scale(0.96); }
.button:disabled { cursor: not-allowed; opacity: 0.55; }
.button--primary { color: #041018; background: var(--accent); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18), 0 10px 28px rgba(37, 188, 232, 0.2); }
.button--primary:hover { background: #79dfff; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 14px 34px rgba(37, 188, 232, 0.25); }
.button--secondary { color: var(--text); background: rgba(255, 255, 255, 0.045); box-shadow: inset 0 0 0 1px var(--line), 0 4px 14px rgba(0, 0, 0, 0.1); }
.button--secondary:hover { background: rgba(255, 255, 255, 0.075); box-shadow: inset 0 0 0 1px var(--line-strong), 0 8px 20px rgba(0, 0, 0, 0.14); }
.button--light { color: #07131d; background: #f2f8fb; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16), 0 12px 28px rgba(0, 0, 0, 0.16); }
.button--light:hover { background: #fff; transform: translateY(-1px); }
.button--wide { width: 100%; }
.text-button { min-height: 40px; padding: 0; border: 0; color: var(--accent); background: transparent; cursor: pointer; font-size: 13px; font-weight: 700; transition: color 180ms ease, opacity 180ms ease; }
.text-button:hover { color: #9ae7ff; }
.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 13px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 150ms ease;
}
.icon-button:hover { color: var(--text); background: rgba(255, 255, 255, 0.075); }
.icon-button:active { transform: scale(0.96); }
.icon-button svg { width: 20px; height: 20px; }

/* Hero */
.hero { padding: 92px 0 78px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.82fr); gap: clamp(48px, 7vw, 96px); align-items: center; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #bcecff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.status-dot { width: 8px; height: 8px; border-radius: 99px; background: var(--success); box-shadow: 0 0 0 5px rgba(114, 226, 173, 0.1); }
.hero h1 { max-width: 750px; margin-bottom: 24px; font-size: clamp(42px, 5.3vw, 70px); line-height: 1.03; letter-spacing: -0.055em; }
.hero h1 span { color: var(--accent); }
.hero-lead { max-width: 680px; margin-bottom: 32px; color: var(--text-soft); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 0; padding: 0; list-style: none; }
.hero-assurances li { display: inline-flex; align-items: center; gap: 8px; color: var(--text-soft); font-size: 13px; font-weight: 600; }
.hero-assurances svg { width: 17px; height: 17px; color: var(--success); }

.example-card {
  padding: 8px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-float), inset 0 0 0 1px var(--line);
}
.example-card > * { margin-inline: 20px; }
.example-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin: 0; padding: 22px 20px 20px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: rgba(255, 255, 255, 0.025); }
.example-label { display: block; margin-bottom: 6px; color: var(--warning); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.example-card h2 { margin-bottom: 0; font-size: 21px; letter-spacing: -0.025em; }
.example-icon { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 14px; color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px rgba(91, 212, 255, 0.15); }
.example-icon svg { width: 22px; height: 22px; }
.profile-line { display: flex; align-items: center; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.profile-avatar { display: grid; width: 46px; height: 46px; flex: 0 0 46px; place-items: center; border-radius: 14px; color: #07131d; background: linear-gradient(145deg, #79dfff, #54c5ea); font-size: 13px; font-weight: 800; }
.profile-line strong, .profile-line span { display: block; }
.profile-line strong { margin-bottom: 2px; font-size: 14px; }
.profile-line > div:nth-child(2) > span { color: var(--text-muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.profile-badge { margin-left: auto; padding: 6px 9px; border-radius: 999px; color: var(--success) !important; background: var(--success-soft); font-size: 10px !important; font-weight: 800; }
.example-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 20px; overflow: hidden; border-radius: var(--radius-md); background: var(--line); box-shadow: inset 0 0 0 1px var(--line); }
.example-metrics div { padding: 15px 16px; background: rgba(8, 24, 35, 0.95); }
.example-metrics dt { margin-bottom: 3px; color: var(--text-muted); font-size: 11px; }
.example-metrics dd { margin: 0; font-size: 17px; font-weight: 800; font-variant-numeric: tabular-nums; }
.example-total { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-top: 20px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.example-total span { color: var(--text-soft); font-size: 13px; }
.example-total strong { color: var(--accent); font-size: 27px; line-height: 1; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; }
.example-note { margin-top: 16px; margin-bottom: 20px; color: var(--text-muted); font-size: 11px; line-height: 1.55; }

/* Trust strip */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.018); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; min-height: 112px; padding: 20px 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border-radius: 13px; color: var(--accent); background: var(--accent-soft); }
.trust-icon svg { width: 21px; height: 21px; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { margin-bottom: 2px; font-size: 14px; }
.trust-item div > span { color: var(--text-muted); font-size: 12px; }

/* Shared section headings */
.estimate-section, .process-section, .transparency-section, .faq-section { padding: 112px 0; }
.section-layout { display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(520px, 1.3fr); gap: clamp(48px, 8vw, 100px); align-items: start; }
.section-heading { max-width: 580px; }
.section-heading .section-kicker { margin-bottom: 16px; }
.section-heading h2 { margin-bottom: 18px; font-size: clamp(32px, 4vw, 52px); line-height: 1.1; letter-spacing: -0.045em; }
.section-heading p { margin-bottom: 0; color: var(--text-soft); font-size: 16px; line-height: 1.75; }
.section-heading--center { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.text-link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 24px; color: var(--accent); font-weight: 800; transition: color 180ms ease, transform 180ms ease; }
.text-link:hover { color: #9ae7ff; transform: translateX(2px); }

/* Estimate and wizard */
.estimate-shell { min-width: 0; }
.estimate-card, .transfer-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow-card), inset 0 0 0 1px var(--line);
}
.tag-form label { display: block; margin-bottom: 9px; color: var(--text-soft); font-size: 13px; font-weight: 700; }
.tag-input-row { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.tag-prefix { position: absolute; z-index: 1; top: 50%; left: 17px; color: var(--text-muted); font-size: 17px; font-weight: 800; transform: translateY(-50%); pointer-events: none; }
.tag-input-row input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px 0 34px;
  border: 0;
  border-radius: var(--radius-md);
  outline: 0;
  color: var(--text);
  background: rgba(4, 15, 23, 0.48);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}
.tag-input-row input::placeholder { color: #607b89; }
.tag-input-row input:focus { background: rgba(4, 15, 23, 0.7); box-shadow: inset 0 0 0 1px var(--accent), 0 0 0 4px rgba(91, 212, 255, 0.1); }
.form-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; color: var(--text-muted); font-size: 11px; }
.inline-error { margin: 12px 0 0; padding: 10px 12px; border-radius: 10px; color: var(--danger); background: var(--danger-soft); font-size: 12px; }
.loading-panel { display: flex; align-items: center; gap: 14px; min-height: 128px; margin-top: 22px; padding: 22px; border-radius: var(--radius-lg); background: rgba(4, 15, 23, 0.38); box-shadow: inset 0 0 0 1px var(--line); }
.loading-panel strong, .loading-panel span { display: block; }
.loading-panel strong { margin-bottom: 2px; font-size: 14px; }
.loading-panel div > span { color: var(--text-muted); font-size: 12px; }
.spinner { width: 30px; height: 30px; flex: 0 0 30px; border: 3px solid rgba(91, 212, 255, 0.16); border-top-color: var(--accent); border-radius: 50%; animation: spin 800ms linear infinite; }
.spinner--small { width: 20px; height: 20px; flex-basis: 20px; border-width: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }
.result-panel { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); animation: panel-in 320ms ease both; }
@keyframes panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.result-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.result-status { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 8px; color: var(--success); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; }
.result-status i { width: 7px; height: 7px; border-radius: 99px; background: var(--success); }
.result-header h3 { margin-bottom: 3px; font-size: 25px; letter-spacing: -0.03em; }
.result-header > div > span:last-child { color: var(--text-muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.result-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 24px 0 0; }
.result-metrics div { min-width: 0; padding: 14px 10px; border-radius: 14px; background: rgba(4, 15, 23, 0.42); box-shadow: inset 0 0 0 1px var(--line); text-align: center; }
.result-metrics dt { overflow: hidden; color: var(--text-muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.result-metrics dd { margin: 4px 0 0; font-size: 16px; font-weight: 800; font-variant-numeric: tabular-nums; }
.result-price { margin-top: 16px; padding: 20px; border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(91, 212, 255, 0.11), rgba(114, 226, 173, 0.055)); box-shadow: inset 0 0 0 1px rgba(91, 212, 255, 0.14); }
.result-price > span, .result-price > strong, .result-price > small { display: block; }
.result-price > span { margin-bottom: 6px; color: var(--text-soft); font-size: 12px; }
.result-price > strong { color: var(--accent); font-size: 34px; line-height: 1.1; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.result-price > small { margin-top: 7px; color: var(--text-muted); font-size: 10px; }
.result-actions { margin-top: 16px; }
.result-disclaimer { margin: 12px 0 0; color: var(--text-muted); font-size: 10px; text-align: center; }
.error-panel { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 12px; align-items: center; margin-top: 22px; padding: 16px; border-radius: var(--radius-md); color: var(--danger); background: var(--danger-soft); box-shadow: inset 0 0 0 1px rgba(255, 137, 147, 0.16); animation: panel-in 260ms ease both; }
.error-icon { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; background: rgba(255, 137, 147, 0.09); }
.error-icon svg { width: 20px; height: 20px; }
.error-panel strong { display: block; margin-bottom: 2px; font-size: 13px; }
.error-panel p { margin: 0; color: #d4a1a8; font-size: 11px; }

.transfer-card { animation: panel-in 320ms ease both; }
.wizard-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.wizard-header .section-kicker { margin-bottom: 7px; }
.wizard-header h3 { margin-bottom: 0; font-size: 22px; letter-spacing: -0.03em; }
.wizard-progress { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 25px 0 34px; padding: 0; list-style: none; }
.wizard-progress::before { content: ""; position: absolute; z-index: 0; top: 17px; left: 12.5%; right: 12.5%; height: 1px; background: var(--line-strong); }
.wizard-progress li { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--text-muted); }
.wizard-progress li > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line-strong); font-size: 12px; font-weight: 800; font-variant-numeric: tabular-nums; transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease; }
.wizard-progress li small { font-size: 9px; font-weight: 700; }
.wizard-progress li.is-active { color: var(--accent); }
.wizard-progress li.is-active > span { color: #041018; background: var(--accent); box-shadow: 0 0 0 5px rgba(91, 212, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.16); transform: scale(1.05); }
.wizard-progress li.is-complete { color: var(--success); }
.wizard-progress li.is-complete > span { color: #041018; background: var(--success); box-shadow: 0 0 0 4px rgba(114, 226, 173, 0.08); }
.wizard-panel { display: flex; flex-direction: column; align-items: center; text-align: center; animation: panel-in 300ms ease both; }
.panel-icon { display: grid; width: 58px; height: 58px; margin-bottom: 16px; place-items: center; border-radius: 18px; color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px rgba(91, 212, 255, 0.14); }
.panel-icon svg { width: 27px; height: 27px; transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease; }
.wizard-panel:hover .panel-icon svg { transform: scale(1.05); }
.step-label { margin-bottom: 7px; color: var(--text-muted); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.wizard-panel h4 { margin-bottom: 10px; font-size: 25px; letter-spacing: -0.035em; }
.wizard-panel > p:not(.inline-error) { max-width: 520px; margin-bottom: 22px; color: var(--text-soft); font-size: 13px; }
.mail-box { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; padding: 12px 12px 12px 17px; border-radius: var(--radius-md); background: rgba(4, 15, 23, 0.48); box-shadow: inset 0 0 0 1px var(--line); }
.mail-box code { overflow: hidden; color: var(--text); font-family: inherit; font-size: 13px; font-weight: 700; text-overflow: ellipsis; }
.copy-button { display: inline-flex; min-height: 44px; align-items: center; gap: 7px; padding: 0 13px; border: 0; border-radius: 12px; color: var(--accent); background: var(--accent-soft); cursor: pointer; font-size: 11px; font-weight: 800; transition: transform 150ms ease, background-color 180ms ease, color 180ms ease; }
.copy-button:hover { color: #a1ebff; background: rgba(91, 212, 255, 0.17); }
.copy-button:active { transform: scale(0.96); }
.copy-button svg { width: 17px; height: 17px; }
.instruction-details { width: 100%; margin-bottom: 20px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.026); box-shadow: inset 0 0 0 1px var(--line); text-align: left; }
.instruction-details summary { min-height: 46px; padding: 12px 15px; cursor: pointer; color: var(--text-soft); font-size: 12px; font-weight: 700; }
.instruction-video { display: block; width: calc(100% - 24px); max-height: 260px; margin: 0 12px 12px; border-radius: 12px; object-fit: contain; outline: 1px solid var(--line); }
.button-loading { display: inline-flex; min-height: 50px; align-items: center; gap: 9px; color: var(--text-soft); font-size: 12px; }
.confirmation-code { width: 100%; margin-bottom: 20px; padding: 18px; border-radius: var(--radius-md); color: var(--accent); background: rgba(4, 15, 23, 0.5); box-shadow: inset 0 0 0 1px rgba(91, 212, 255, 0.2); font-size: clamp(27px, 6vw, 38px); font-weight: 800; letter-spacing: 0.16em; text-align: center; font-variant-numeric: tabular-nums; }
.success-mark { display: grid; width: 68px; height: 68px; margin-bottom: 18px; place-items: center; border-radius: 50%; color: #061a12; background: var(--success); box-shadow: 0 0 0 8px rgba(114, 226, 173, 0.08), 0 12px 34px rgba(0, 0, 0, 0.18); }
.success-mark svg { width: 34px; height: 34px; }
.final-value { width: 100%; margin-bottom: 20px; padding: 18px; border-radius: var(--radius-md); background: var(--success-soft); box-shadow: inset 0 0 0 1px rgba(114, 226, 173, 0.16); }
.final-value span, .final-value strong { display: block; }
.final-value span { margin-bottom: 4px; color: var(--text-soft); font-size: 11px; }
.final-value strong { color: var(--success); font-size: 30px; font-variant-numeric: tabular-nums; }

/* Payout details */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.wizard-progress--five { grid-template-columns: repeat(5, 1fr); }
.wizard-progress--five::before { left: 10%; right: 10%; }
.wizard-panel--payout { align-items: stretch; }
.wizard-panel--payout > .panel-icon, .wizard-panel--payout > .step-label, .wizard-panel--payout > h4, .wizard-panel--payout > p { align-self: center; text-align: center; }
.payout-form { width: 100%; text-align: left; }
.payout-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 2px 0 22px; padding: 0; border: 0; }
.payout-method { position: relative; display: flex; min-width: 0; min-height: 132px; flex-direction: column; align-items: flex-start; padding: 17px; overflow: hidden; border-radius: var(--radius-md); background: rgba(4, 15, 23, 0.38); box-shadow: inset 0 0 0 1px var(--line); cursor: pointer; transition: transform 160ms ease, background-color 180ms ease, box-shadow 180ms ease; }
.payout-method:hover { transform: translateY(-2px); background: rgba(4, 15, 23, 0.55); box-shadow: inset 0 0 0 1px var(--line-strong), 0 8px 20px rgba(0, 0, 0, 0.1); }
.payout-method:active { transform: scale(0.98); }
.payout-method.is-selected { background: linear-gradient(145deg, rgba(91, 212, 255, 0.12), rgba(91, 212, 255, 0.055)); box-shadow: inset 0 0 0 1px rgba(91, 212, 255, 0.34), 0 8px 22px rgba(0, 0, 0, 0.11); }
.payout-method input { position: absolute; opacity: 0; pointer-events: none; }
.payout-method__icon { display: grid; width: 36px; height: 36px; margin-bottom: 14px; place-items: center; border-radius: 11px; color: var(--accent); background: var(--accent-soft); transition: transform 180ms ease, background-color 180ms ease; }
.payout-method:hover .payout-method__icon { transform: scale(1.05); }
.payout-method__icon svg { width: 19px; height: 19px; }
.payout-method strong { margin-bottom: 3px; font-size: 12px; }
.payout-method small { color: var(--text-muted); font-size: 9px; line-height: 1.45; }
.payout-method__check { position: absolute; top: 14px; right: 14px; width: 17px; height: 17px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-strong); transition: background-color 180ms ease, box-shadow 180ms ease; }
.payout-method.is-selected .payout-method__check { background: var(--accent); box-shadow: inset 0 0 0 4px var(--surface), 0 0 0 1px var(--accent); }
.payout-fields { margin-bottom: 18px; padding: 20px; border-radius: var(--radius-lg); background: rgba(4, 15, 23, 0.3); box-shadow: inset 0 0 0 1px var(--line); animation: panel-in 240ms ease both; }
.field-group { display: block; min-width: 0; }
.field-group + .field-group { margin-top: 15px; }
.field-label { display: block; margin-bottom: 8px; color: var(--text-soft); font-size: 11px; font-weight: 800; }
.form-grid { display: grid; gap: 12px; }
.form-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid--two.is-single { grid-template-columns: 1fr; }
.form-grid .field-group + .field-group { margin-top: 0; }
.field-group input, .field-group select, .field-group textarea { width: 100%; min-height: 50px; padding: 0 14px; border: 0; border-radius: 13px; outline: 0; color: var(--text); background: rgba(5, 17, 26, 0.64); box-shadow: inset 0 0 0 1px var(--line); font-size: 13px; transition: background-color 180ms ease, box-shadow 180ms ease; }
.field-group textarea { min-height: 74px; padding-block: 13px; resize: vertical; font-family: inherit; line-height: 1.5; }
.field-group select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%); background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 34px; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { background-color: rgba(5, 17, 26, 0.86); box-shadow: inset 0 0 0 1px var(--accent), 0 0 0 4px rgba(91, 212, 255, 0.09); }
.field-group input::placeholder, .field-group textarea::placeholder { color: #587281; }
.field-hint { display: block; margin-top: 7px; color: var(--text-muted); font-size: 9px; line-height: 1.55; }
.country-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.country-options label { position: relative; cursor: pointer; }
.country-options input { position: absolute; opacity: 0; pointer-events: none; }
.country-options span { display: flex; min-height: 44px; align-items: center; justify-content: center; padding: 0 8px; border-radius: 12px; color: var(--text-soft); background: rgba(5, 17, 26, 0.48); box-shadow: inset 0 0 0 1px var(--line); font-size: 11px; font-weight: 700; transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 150ms ease; }
.country-options span:hover { color: var(--text); background: rgba(5, 17, 26, 0.68); }
.country-options input:checked + span { color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px rgba(91, 212, 255, 0.32); }
.country-options span:active { transform: scale(0.97); }
.input-with-icon { position: relative; display: block; }
.input-with-icon svg { position: absolute; z-index: 1; top: 50%; left: 14px; width: 19px; height: 19px; color: var(--text-muted); transform: translateY(-50%); pointer-events: none; }
.input-with-icon input { padding-left: 44px; font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }
.input-with-icon--at > span { position: absolute; z-index: 1; top: 50%; left: 16px; color: var(--text-muted); font-weight: 800; transform: translateY(-50%); pointer-events: none; }
.input-with-icon--at input { padding-left: 34px; letter-spacing: 0; }
.payout-rate-note { margin: 14px 0 0 !important; padding: 11px 13px; border-radius: 11px; color: var(--text-soft) !important; background: rgba(255, 255, 255, 0.035); font-size: 9px !important; line-height: 1.55; }
.payout-security-note { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; padding: 12px 14px; border-radius: 12px; color: var(--text-soft); background: var(--success-soft); box-shadow: inset 0 0 0 1px rgba(114, 226, 173, 0.13); font-size: 10px; line-height: 1.55; }
.payout-security-note svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--success); }
.saved-payout-summary, .final-payout { width: 100%; margin-bottom: 18px; padding: 13px 15px; border-radius: 13px; color: var(--text-soft); background: rgba(255, 255, 255, 0.035); box-shadow: inset 0 0 0 1px var(--line); font-size: 11px; text-align: left; }
.saved-payout-summary strong, .final-payout strong { display: block; margin-bottom: 2px; color: var(--text); font-size: 12px; }
.final-payout { max-width: 100%; margin-top: -8px; text-align: center; }

/* Process */
.process-section { background: rgba(255, 255, 255, 0.014); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.process-card { position: relative; min-height: 270px; padding: 25px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)); box-shadow: inset 0 0 0 1px var(--line), 0 8px 26px rgba(0, 0, 0, 0.09); transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease; }
.process-card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--line-strong), 0 14px 34px rgba(0, 0, 0, 0.14); }
.process-number { position: absolute; top: 18px; right: 20px; color: rgba(238, 245, 248, 0.12); font-size: 36px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.process-icon { display: grid; width: 48px; height: 48px; margin-bottom: 48px; place-items: center; border-radius: 15px; color: var(--accent); background: var(--accent-soft); }
.process-icon svg { width: 23px; height: 23px; transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease; }
.process-card:hover .process-icon svg { transform: scale(1.06); }
.process-card h3 { margin-bottom: 10px; font-size: 18px; letter-spacing: -0.025em; }
.process-card p { margin-bottom: 0; color: var(--text-soft); font-size: 13px; line-height: 1.65; }

/* Transparency */
.transparency-grid { display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr); gap: clamp(48px, 8vw, 96px); align-items: center; }
.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.principle-card { min-height: 180px; padding: 22px; border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.032); box-shadow: inset 0 0 0 1px var(--line), 0 8px 24px rgba(0, 0, 0, 0.08); transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease; }
.principle-card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.048); box-shadow: inset 0 0 0 1px var(--line-strong), 0 12px 30px rgba(0, 0, 0, 0.12); }
.principle-card--wide { grid-column: span 2; min-height: 150px; display: flex; align-items: center; gap: 18px; }
.principle-icon { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border-radius: 14px; color: var(--accent); background: var(--accent-soft); }
.principle-icon svg { width: 22px; height: 22px; transition: transform 220ms ease, opacity 220ms ease; }
.principle-card:hover .principle-icon svg { transform: scale(1.05); }
.principle-card h3 { margin: 16px 0 7px; font-size: 16px; }
.principle-card--wide h3 { margin-top: 0; }
.principle-card p { margin-bottom: 0; color: var(--text-soft); font-size: 12px; }

/* FAQ */
.faq-section { border-top: 1px solid var(--line); background: rgba(255, 255, 255, 0.012); }
.faq-layout { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr); gap: clamp(48px, 8vw, 100px); align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.032); box-shadow: inset 0 0 0 1px var(--line); transition: background-color 180ms ease, box-shadow 180ms ease; }
.faq-item:hover { background: rgba(255, 255, 255, 0.047); box-shadow: inset 0 0 0 1px var(--line-strong); }
.faq-item summary { display: flex; min-height: 64px; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 18px; cursor: pointer; list-style: none; font-size: 14px; font-weight: 750; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { position: relative; width: 22px; height: 22px; flex: 0 0 22px; border-radius: 8px; background: rgba(255, 255, 255, 0.045); }
.faq-item summary span::before, .faq-item summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; border-radius: 2px; background: var(--text-soft); transform: translate(-50%, -50%); transition: transform 180ms ease, opacity 180ms ease; }
.faq-item summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary span::after { opacity: 0; transform: translate(-50%, -50%) rotate(0); }
.faq-item p { margin: -2px 18px 0; padding: 0 34px 18px 0; color: var(--text-soft); font-size: 12px; line-height: 1.7; animation: faq-in 220ms ease both; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* Final CTA and footer */
.final-cta { padding: 0 0 112px; }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 42px 46px; overflow: hidden; border-radius: var(--radius-xl); background: linear-gradient(125deg, #35bce7 0%, #6bd7ef 58%, #79e0be 120%); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18), 0 24px 58px rgba(22, 131, 166, 0.22); color: #041018; }
.final-cta .section-kicker { margin-bottom: 10px; color: rgba(4, 16, 24, 0.63); }
.final-cta h2 { max-width: 720px; margin-bottom: 0; font-size: clamp(27px, 3.4vw, 43px); line-height: 1.12; letter-spacing: -0.045em; }
.site-footer { border-top: 1px solid var(--line); background: #061019; }
.footer-main { display: flex; align-items: flex-start; justify-content: space-between; gap: 50px; padding: 54px 0 42px; }
.brand--footer { margin-bottom: 13px; }
.footer-main > div > p { max-width: 420px; margin-bottom: 0; color: var(--text-muted); font-size: 12px; }
.footer-main nav { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 4px 26px; }
.footer-main nav a { display: inline-flex; min-height: 40px; align-items: center; color: var(--text-soft); font-size: 12px; font-weight: 700; transition: color 180ms ease; }
.footer-main nav a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 18px 0 26px; border-top: 1px solid var(--line); color: var(--text-muted); font-size: 10px; }
.footer-bottom p { margin-bottom: 0; }

.toast { position: fixed; z-index: 500; bottom: 22px; left: 50%; max-width: min(420px, calc(100% - 32px)); padding: 12px 16px; border-radius: 13px; color: var(--text); background: rgba(9, 26, 38, 0.95); box-shadow: var(--shadow-card), inset 0 0 0 1px var(--line-strong); opacity: 0; pointer-events: none; transform: translate(-50%, 14px); transition: opacity 180ms ease, transform 220ms ease; font-size: 12px; text-align: center; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* Scroll reveal: not used for content initially in viewport */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1); will-change: transform, opacity; }
.reveal.is-visible { opacity: 1; transform: translateY(0); will-change: auto; }

:focus-visible { outline: 3px solid rgba(91, 212, 255, 0.42); outline-offset: 3px; }

@media (max-width: 980px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; }
  .hero { padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-copy { max-width: 760px; }
  .example-card { max-width: 620px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section-layout, .transparency-grid, .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .section-heading { max-width: 700px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 68px; }
  .hero { padding: 52px 0 60px; }
  .hero h1 { font-size: clamp(37px, 12vw, 52px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-assurances { align-items: flex-start; flex-direction: column; }
  .example-card > * { margin-inline: 14px; }
  .example-card__top { margin: 0; padding: 19px 14px 17px; }
  .profile-badge { display: none !important; }
  .example-total { align-items: flex-start; flex-direction: column; gap: 8px; }
  .estimate-section, .process-section, .transparency-section, .faq-section { padding: 82px 0; }
  .section-heading h2 { font-size: 34px; }
  .estimate-card, .transfer-card { padding: 20px; border-radius: 22px; }
  .tag-input-row { grid-template-columns: 1fr; }
  .tag-prefix { top: 27px; }
  .tag-input-row .button { width: 100%; }
  .form-meta { align-items: flex-start; flex-direction: column; gap: 2px; }
  .result-metrics { grid-template-columns: repeat(2, 1fr); }
  .error-panel { grid-template-columns: auto 1fr; }
  .error-panel .text-button { grid-column: 1 / -1; justify-self: start; }
  .wizard-progress { margin-inline: -5px; }
  .wizard-progress li small { display: none; }
  .wizard-progress li > span { width: 31px; height: 31px; }
  .wizard-progress::before { top: 15px; }
  .payout-methods { grid-template-columns: 1fr; }
  .payout-method { min-height: 88px; padding: 14px 48px 14px 62px; justify-content: center; }
  .payout-method__icon { position: absolute; top: 50%; left: 14px; margin: 0; transform: translateY(-50%); }
  .payout-method:hover .payout-method__icon { transform: translateY(-50%) scale(1.05); }
  .payout-method__check { top: 50%; transform: translateY(-50%); }
  .payout-fields { padding: 16px; }
  .form-grid--two, .country-options { grid-template-columns: 1fr; }
  .country-options { gap: 6px; }
  .wizard-panel--payout > p { font-size: 12px; }
  .mail-box { align-items: stretch; flex-direction: column; padding: 14px; }
  .copy-button { justify-content: center; }
  .process-grid, .principles-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 230px; }
  .principle-card--wide { grid-column: auto; min-height: 180px; align-items: flex-start; flex-direction: column; }
  .final-cta { padding-bottom: 82px; }
  .final-cta__inner { padding: 32px 24px; border-radius: 22px; }
  .final-cta .button { width: 100%; }
  .footer-main, .footer-bottom { flex-direction: column; }
  .footer-main nav { width: 100%; grid-template-columns: 1fr; }
  .footer-bottom { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; will-change: auto; }
}
