:root {
  --gold: #c2921a;
  --gold-bright: #d4a84a;
  --gold-soft: #f8efd4;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --line: #e8eaee;
  --soft: #f5f6f8;
  --white: #ffffff;
  --green: #16a34a;
  --green-bg: #e8f8ee;
  --dark: #1c1c1c;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(26, 26, 26, .10);
  --page-max: 1180px;
  --form-max: 920px;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  overflow-x: hidden;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, Segoe UI, sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.skip {
  position: absolute; left: -999px;
}
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px; z-index: 9; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0);
}

.nav {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.04em;
}
.brand img { width: 36px; height: 38px; object-fit: contain; }
.brand-doge { color: var(--gold); }
.beta-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  padding: 2px 7px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold-soft);
  color: #8a6a12;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  font-size: 15px;
  color: #3f4654;
  font-weight: 500;
}
.nav-links a, .drawer-links a, .foot-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-links a .nav-ico, .drawer-links a .nav-ico, .foot-grid a .nav-ico {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--gold);
}
.nav-links a .nav-ico svg, .drawer-links a .nav-ico svg, .foot-grid a .nav-ico svg {
  width: 16px;
  height: 16px;
  display: block;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.is-active {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--gold);
  padding-bottom: 4px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-wrap select,
.page-shell select,
.manage-card select {
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 36px 8px 14px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.page-shell select,
.manage-card select {
  border-radius: 14px;
  padding: 13px 40px 13px 14px;
  font-size: 16px;
  background-color: #f8f9fb;
}
.lang-wrap select:focus,
.page-shell select:focus,
.manage-card select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(194, 146, 26, .12);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(194, 146, 26, .22);
  font-family: inherit;
}
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-nav { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; margin-top: 8px; }
.btn.ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn.small { padding: 8px 12px; font-size: 13px; }
.menu-btn {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
}
.menu-btn span { display: block; height: 2px; background: var(--ink); }

.hero {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 36px 28px 56px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 800;
}
.hero h1 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.lead { color: var(--muted); font-size: 18px; margin: 0 0 26px; max-width: 520px; }
.lead-sm { color: var(--muted); margin: 0 0 22px; }
.hero-points { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 14px; }
.hero-points li { display: flex; gap: 12px; align-items: flex-start; }
.hero-points strong { display: block; }
.hero-points li span span { color: var(--muted); font-size: 14px; }
.ico, .trust-ico, .step-ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--gold-soft);
  flex: 0 0 auto;
}
.ico svg, .trust-ico svg, .step-ico svg { width: 20px; height: 20px; }

.hero-visual {
  position: relative;
  min-height: 560px;
}
.doge {
  position: absolute;
  left: 50px;
  top: 22px;
  width: 360px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 16px 18px rgba(160,120,20,.12));
}
.preview-card {
  position: absolute;
  left: 42px;
  top: 268px;
  width: 390px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(17,24,39,.10);
  padding: 20px 22px 16px;
  z-index: 4;
  transition: transform .35s ease, box-shadow .35s ease;
}
.preview-card.is-tick {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(17,24,39,.16);
}
.preview-card .email {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.preview-card .email b { color: var(--gold); font-weight: 700; }
.hero-flip {
  display: inline-block;
  transition: opacity .35s ease, transform .35s ease;
}
.hero-flip.is-out {
  opacity: 0;
  transform: translateY(8px);
}
.fwd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eef0f3;
  padding-top: 14px;
}
.fwd-row small {
  display: block;
  color: #9aa1ad;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 4px;
}
.fwd-row strong { font-size: 16px; font-weight: 650; }
.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.addr-card {
  position: absolute;
  left: 42px;
  top: 410px;
  width: 390px;
  background: var(--dark);
  color: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 5;
  box-shadow: 0 14px 30px rgba(17,24,39,.16);
  transition: transform .35s ease, box-shadow .35s ease;
}
.addr-card.is-tick {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(17,24,39,.22);
}
.addr-card small {
  display: block;
  color: #b8bec8;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 6px;
}
.addr-card .addr {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.tiny { font-size: 10px; letter-spacing: .12em; font-weight: 800; color: #8b93a0; }
.qr, .qr-box {
  width: 62px;
  height: 62px;
  min-width: 62px;
  min-height: 62px;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.qr img, .qr canvas, .qr-box img, .qr-box canvas {
  display: block;
  width: 54px;
  height: 54px;
}
.qr-box.lg img, .qr-box.lg canvas {
  width: 160px;
  height: 160px;
}
.qr-box.lg { width: 176px; height: 176px; }
.qr-box.xl {
  width: 236px;
  height: 236px;
}
.qr-box.xl img, .qr-box.xl canvas {
  width: 220px;
  height: 220px;
}

.trust {
  background: var(--soft);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 28px 28px;
}
.trust-item { display: flex; gap: 12px; align-items: center; }
.trust-item strong { display: block; }
.trust-item span { color: var(--muted); font-size: 14px; }
.trust-ico { background: transparent; border: 1.5px solid #e2c56a; }

.search-section { padding: 72px 28px; }
.search-panel {
  max-width: var(--form-max);
  margin: 0 auto;
  background: var(--soft);
  border-radius: 28px;
  padding: 42px 36px 36px;
}
.search-panel h2, .how h2, .pricing h2, .faq h2, .about h2, .page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.04em;
  text-align: center;
}
.search-panel .lead-sm, .pricing .lead-sm { text-align: center; }
.search-form {
  display: flex;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  border: 1px solid #e6e8ec;
  box-shadow: 0 10px 30px rgba(17, 24, 39, .06);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.search-form:focus-within {
  border-color: #e2c56a;
  box-shadow: 0 0 0 4px rgba(194, 146, 26, .12), 0 10px 30px rgba(17, 24, 39, .06);
}
.email-combo {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}
.email-combo input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 14px;
  font: inherit;
  font-weight: 650;
  font-size: 16px;
}
.domain {
  color: var(--gold);
  font-weight: 750;
  margin-right: 6px;
  padding: 8px 12px;
  white-space: nowrap;
  background: var(--soft);
  border-radius: 10px;
}
.search-form .btn { height: 48px; min-width: 120px; }
.host-mode {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 10px;
}
.host-opt {
  border: 1px solid #e6e8ec;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: var(--muted);
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.host-opt:hover { border-color: #d4c38a; color: var(--ink); }
.host-opt.is-on {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 0 4px rgba(194, 146, 26, .12);
}
.host-hint {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 16px;
}
.search-msg { display: none; }
.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #e6e8ec;
  background: #f8f9fb;
  font-weight: 650;
}
.alert-box[hidden] { display: none !important; }
.alert-box p { margin: 0; }
.alert-ico, .toast-ico {
  width: 22px; height: 22px; flex: 0 0 22px;
}
.alert-ico svg, .toast-ico svg { width: 22px; height: 22px; }
.alert-box.is-ok { background: var(--green-bg); border-color: #b7e4c7; color: #166534; }
.alert-box.is-bad { background: #fff5f4; border-color: #f3c0ba; color: #b42318; }
.toast-host {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 10px;
  width: min(380px, calc(100vw - 32px));
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8f9fb;
  color: var(--ink);
  border: 1px solid #e6e8ec;
  box-shadow: 0 16px 40px rgba(17, 24, 39, .10);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
}
.toast.is-on { opacity: 1; transform: none; }
.toast p { margin: 0; font-weight: 650; }
.toast-ok { background: var(--green-bg); border-color: #b7e4c7; color: #166534; }
.toast-bad { background: #fff5f4; border-color: #f3c0ba; color: #b42318; }

.wiz-progress {
  height: 3px;
  background: #eceff3;
  border-radius: 99px;
  overflow: hidden;
  margin: 8px 0 10px;
}
.wiz-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width .35s ease;
}
.wiz-step-label {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a8478;
}
.wizard-steps {
  display: none;
}
.wizard-steps.is-visible {
  display: flex;
  gap: 0;
  margin: 0 0 22px;
  padding: 0 0 8px;
  max-width: 100%;
  overflow: hidden;
}
.wizard-steps li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  min-width: 0;
}
.wizard-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 2px;
  background: #e6e8ec;
  z-index: 0;
}
.wizard-steps li.is-done:not(:last-child)::after {
  background: var(--gold);
}
.wizard-steps li.is-on:not(:last-child)::after {
  background: linear-gradient(90deg, var(--gold), #e6e8ec);
}
.wiz-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid #e6e8ec;
  color: #9aa1ad;
  font-size: 13px;
  font-weight: 800;
  z-index: 1;
  transition: background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.wizard-steps li.is-on { color: var(--ink); }
.wizard-steps li.is-on .wiz-num {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(194, 146, 26, .16);
}
.wizard-steps li.is-done { color: var(--gold); }
.wizard-steps li.is-done .wiz-num {
  border-color: var(--gold);
  background: #fffaf0;
  color: transparent;
  font-size: 0;
}
.wizard-steps li.is-done .wiz-num::after {
  content: "✓";
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}
.wizard {
  margin-top: 8px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #eef0f3;
  box-shadow: 0 12px 40px rgba(17, 24, 39, .06);
}
.wiz-pane h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.03em; }
.wiz-lead { color: var(--muted); margin: 0 0 8px; }
.field { margin: 18px 0 8px; }
.field label, .wizard label:not(.switch-line):not(.plan-card):not(.field-mod) {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 8px;
}
textarea, .wizard input[type=email], .wizard input[type=text], .wizard input[type=tel], .wizard select, #doge, #forward,
.manage-card input:not([type=checkbox]):not([type=radio]), .manage-card select, .page-shell input:not([type=checkbox]):not([type=radio]), .page-shell select, .page-shell textarea {
  width: 100%;
  border: 1px solid #dce1e7;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  background: #f8f9fb;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.wizard input:not([type=checkbox]):not([type=radio]):focus, #doge:focus, #forward:focus, .manage-card input:not([type=checkbox]):not([type=radio]):focus, .page-shell input:not([type=checkbox]):not([type=radio]):focus, .page-shell textarea:focus, .page-shell select:focus {
  outline: 0;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(194, 146, 26, .12);
}
.plan-pick {
  display: grid;
  gap: 12px;
  margin: 18px 0 10px;
}
.plan-card {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 18px 18px 18px 16px;
  cursor: pointer;
  background: linear-gradient(#f7f8fb, #f7f8fb) padding-box,
    linear-gradient(135deg, #eceff3, #f7f8fb) border-box;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.plan-card input { position: absolute; opacity: 0; pointer-events: none; }
.plan-card-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e4e7ec;
}
.plan-card-body { min-width: 0; }
.plan-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.plan-card-top strong { font-size: 18px; letter-spacing: -.03em; }
.plan-card em { display: block; margin-top: 4px; font-style: normal; color: var(--muted); font-size: 14px; }
.plan-card-price { font-weight: 800; font-size: 18px; letter-spacing: -.03em; text-align: right; }
.plan-card-price small { display: block; font-size: 11px; font-weight: 650; color: var(--muted); }
.plan-card:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(17,24,39,.06); }
.plan-card.is-on {
  background: linear-gradient(#fffdf6, #fffaf0) padding-box,
    linear-gradient(135deg, #e6c56a, #c2921a) border-box;
  box-shadow: 0 14px 32px rgba(194, 146, 26, .16);
}
.plan-card.is-on .plan-card-mark {
  background: var(--gold);
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23fff' stroke-width='2.4' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.field-mod {
  display: grid;
  gap: 8px;
  margin: 18px 0 8px;
}
.field-mod > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8a8478;
}
.field-mod input:not([type=checkbox]):not([type=radio]), .field-mod textarea, .field-mod select,
.wizard input:not([type=checkbox]):not([type=radio]):not([type=hidden]), .wizard textarea,
.manage-card input:not([type=checkbox]):not([type=radio]):not([type=hidden]), .manage-card textarea, .manage-card select,
.page-shell input:not([type=checkbox]):not([type=radio]):not([type=hidden]), .page-shell textarea, .page-shell select {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  font-size: 16px;
  background: #f4f6f8;
  box-shadow: inset 0 0 0 1px #e7ebf0;
  transition: box-shadow .16s ease, background .16s ease;
}
.field-mod input:not([type=checkbox]):not([type=radio]):focus, .field-mod textarea:focus, .wizard input:not([type=checkbox]):not([type=radio]):focus, .manage-card input:not([type=checkbox]):not([type=radio]):focus, .page-shell input:not([type=checkbox]):not([type=radio]):focus, .page-shell textarea:focus {
  outline: 0;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--gold), 0 0 0 4px rgba(194, 146, 26, .12);
}
.otp {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.otp input {
  height: 56px;
  padding: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  border-radius: 14px;
}
.switch-line {
  position: relative;
  display: flex !important;
  align-items: flex-start;
  gap: 14px;
  margin: 16px 0;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
  background: #f4f6f8;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px #e7ebf0;
  min-width: 0;
  max-width: 100%;
}
.switch-line > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.45;
}
.switch-line a { color: var(--gold); font-weight: 700; }
.switch-line input[type=checkbox] {
  position: absolute;
  left: 16px;
  top: 14px;
  width: 52px;
  height: 32px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.switch-ui {
  width: 52px;
  height: 32px;
  flex: 0 0 52px;
  margin: 0;
  border-radius: 999px;
  background: #c5cad3;
  box-shadow: inset 0 0 0 1px #9aa1ad;
  position: relative;
  transition: background .16s ease, box-shadow .16s ease;
}
.switch-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.22);
  transition: transform .16s ease;
}
.switch-line input:checked + .switch-ui {
  background: var(--gold);
  box-shadow: inset 0 0 0 1px #a67b12;
}
.switch-line input:checked + .switch-ui::after { transform: translateX(20px); }
.switch-line:focus-within {
  box-shadow: inset 0 0 0 1px var(--gold), 0 0 0 4px rgba(194, 146, 26, .12);
}
.btn-ico {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
}
.btn-ico svg { width: 16px; height: 16px; }
.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-page .lead { margin-left: auto; margin-right: auto; }
.contact-card {
  width: 100%;
  max-width: var(--form-max);
  text-align: left;
  margin: 8px auto 0;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(17,24,39,.08);
  border: 1px solid #eef0f3;
}
.phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-row .dial {
  font-weight: 750;
  color: var(--gold);
  min-width: 52px;
}
.phone-row input { flex: 1; }
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, .46);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.nav-backdrop.is-on {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #fff;
  z-index: 50;
  transform: translateX(100%);
  transition: transform .26s ease;
  box-shadow: -16px 0 40px rgba(0,0,0,.14);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nav-drawer.is-on { transform: translateX(0); }
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.drawer-close {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.drawer-links { display: flex; flex-direction: column; gap: 4px; }
.drawer-links a {
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 650;
}
.drawer-links a:hover { background: var(--soft); color: var(--gold); }
body.nav-open { overflow: hidden; }
.resolve { max-width: var(--form-max); margin: 0 auto; padding: 20px 28px 80px; }
.resolve h2 { text-align: center; margin: 0 0 8px; letter-spacing: -.04em; font-size: clamp(28px, 4vw, 40px); }
.resolve-form { margin-top: 18px; }
.resolve-form input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 12px 14px;
  font: inherit;
  font-weight: 600;
}
.resolve-out { text-align: center; margin-top: 12px; }
.hint { color: #8b93a0; font-size: 13px; margin: 0 0 8px; }
.search-panel .hint { margin: 12px 0 0; max-width: 42rem; line-height: 1.45; }
.search-panel .hint a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.search-panel .reserved-hint {
  text-align: center;
  max-width: 36rem;
  margin: 14px auto 0;
}
.wiz-nav { display: flex; gap: 10px; margin-top: 22px; }
.wiz-nav .btn { min-width: 132px; }
.wiz-nav .btn.ghost { min-width: 0; }
.hp { position: absolute; left: -9999px; }
.confirm-box {
  background: #f8f9fb;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  padding: 6px 18px;
  margin: 16px 0 4px;
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid #eef0f3;
}
.confirm-row:last-child { border-bottom: 0; }
.confirm-row span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8b93a0;
  flex: 0 0 auto;
}
.confirm-row strong { text-align: right; font-size: 15px; overflow-wrap: anywhere; }
.bill-geo {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr);
  gap: 14px;
  align-items: start;
  margin: 18px 0 8px;
}
.bill-geo > .field-mod {
  margin: 0;
  min-width: 0;
}
.country-pick { position: relative; }
.country-pick-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  font-size: 16px;
  text-align: left;
  background: #f4f6f8;
  box-shadow: inset 0 0 0 1px #e7ebf0;
  color: #9aa3ad;
  cursor: pointer;
  transition: box-shadow .16s ease, background .16s ease, color .16s ease;
}
.country-pick.has-value .country-pick-btn { color: #1a1a1a; }
.country-pick-btn[aria-expanded="true"], .country-pick-btn:focus-visible {
  outline: 0;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--gold), 0 0 0 4px rgba(194, 146, 26, .12);
}
.country-pick-chev {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #8a8478;
  transition: transform .16s ease;
}
.country-pick-btn[aria-expanded="true"] .country-pick-chev { transform: rotate(180deg); }
.country-pick-pop {
  position: absolute;
  z-index: 50;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(20, 16, 8, .16), inset 0 0 0 1px #ece7dc;
  padding: 10px;
}
.country-pick-pop.is-up {
  top: auto;
  bottom: calc(100% + 6px);
}
.country-pick-search {
  width: 100%;
  border: 0;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  margin: 0 0 8px;
  font: inherit;
  font-size: 15px;
  background: #f4f6f8 !important;
  box-shadow: inset 0 0 0 1px #e7ebf0 !important;
}
.country-pick-search:focus {
  outline: 0;
  background: #fff !important;
  box-shadow: inset 0 0 0 1px var(--gold), 0 0 0 4px rgba(194, 146, 26, .12) !important;
}
.country-pick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 240px;
  overflow: auto;
}
.country-pick-opt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  padding: 11px 12px;
  border-radius: 12px;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.country-pick-opt:hover,
.country-pick-opt:focus-visible,
.country-pick-opt.is-on {
  background: #fff8e6;
}
.country-pick-opt strong { font-weight: 650; }
.country-pick-opt span {
  color: #8a8478;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.country-pick-empty {
  padding: 14px 12px;
  color: #8a8478;
  font-size: 14px;
}
@media (max-width: 640px) {
  .bill-geo { grid-template-columns: 1fr; }
}
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; word-break: break-all; }

.result-card {
  margin-top: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: center;
}
.result-mail { display: flex; gap: 12px; align-items: flex-start; }
.result-mail .ico { background: var(--green-bg); color: var(--green); }
.result-mail p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.result-doge { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.text-btn {
  border: 0; background: none; color: var(--gold); font-weight: 700; cursor: pointer; font: inherit;
}
.success-copy { text-align: center; font-weight: 650; margin: 16px 0 0; }

.how { max-width: var(--page-max); margin: 0 auto; padding: 20px 28px 90px; }
.steps {
  max-width: var(--page-max);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.steps article { text-align: center; position: relative; }
.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 62%;
  width: 76%;
  border-top: 1.5px dashed #d8dde3;
}
.step-ico { margin: 0 auto 14px; width: 48px; height: 48px; }
.steps h3 { margin: 0 0 6px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.pricing { background: var(--soft); padding: 80px 28px; }
.plan-grid {
  max-width: var(--page-max);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #ececec;
}
.plan.is-hot {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(194,146,26,.12);
}
.plan h3 { margin: 0; font-size: 20px; }
.plan .price { font-size: 32px; font-weight: 800; letter-spacing: -.04em; margin: 10px 0 0; }
.plan .period { color: var(--muted); font-size: 13px; }
.plan ul { padding: 0; margin: 16px 0 20px; list-style: none; color: #444; }
.plan li { padding: 5px 0 5px 18px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

.faq { max-width: var(--page-max); margin: 0 auto; padding: 80px 28px; }
.faq details { border-top: 1px solid var(--line); padding: 16px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin: 10px 0 0; }

.about { max-width: var(--page-max); margin: 0 auto 70px; padding: 0 28px 40px; text-align: center; }
.about p { color: var(--muted); }
.page-hero { text-align: center; padding: 12px 0 8px; }
.page-shell.wide { max-width: var(--page-max); }
.cms-body { font-size: 16px; }
.cms-body .page-lead {
  font-size: 19px;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}
.cms-body h2 { letter-spacing: -.03em; margin: 32px 0 12px; }
.cms-body ul { color: #444; }
.cms-body a { color: var(--gold); font-weight: 700; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 28px;
}
.about-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(17, 24, 39, .05);
}
.about-card h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.03em; }
.about-card p { margin: 0; color: var(--muted); }
.about-cta { text-align: center; margin: 8px 0 0; }
.cms-body a.btn,
.cms-body a.btn .btn-txt,
.cms-body a.btn .btn-ico,
.about-cta .btn,
.about-cta .btn .btn-txt,
.about-cta .btn .btn-ico { color: #fff !important; }
.manage-card .email-combo {
  background: #f8f9fb;
  border: 1px solid #dce1e7;
  border-radius: 14px;
  padding: 4px 6px 4px 4px;
}
.manage-card .email-combo:focus-within {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(194, 146, 26, .12);
}
.manage-card .email-combo input {
  border: 0;
  background: transparent;
  width: auto;
  flex: 1;
  box-shadow: none;
  padding: 12px 14px;
}

.foot {
  border-top: 1px solid var(--line);
  max-width: var(--page-max);
  margin: 40px auto 0;
  padding: 40px 28px 36px;
  color: #6b7280;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px 32px;
  align-items: start;
}
.foot-brand p { margin: 12px 0 0; max-width: 280px; line-height: 1.5; }
.foot-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.foot-grid a {
  display: flex;
  padding: 5px 0;
  font-weight: 600;
  color: #3f4654;
}
.foot-grid a:hover { color: var(--gold); }
.foot-copy { margin: 28px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; }
.foot .brand { color: var(--ink); }

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; gap: 12px; position: sticky; top: 0; background: #fff; z-index: 30; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .hero, .trust, .steps, .plan-grid, .result-card, .about-grid { grid-template-columns: 1fr; }
  .hero { padding: 16px 18px 36px; gap: 22px; }
  .hero-visual {
    min-height: 560px;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .doge { left: 12%; top: 0; width: min(320px, 72%); }
  .preview-card, .addr-card { left: 4%; width: 92%; }
  .preview-card { top: 230px; }
  .addr-card { top: 372px; }
  .steps article:not(:last-child)::after { display: none; }
  .search-form { flex-direction: column; }
  .search-panel { padding: 28px 16px; }
  .wizard { padding: 20px 16px; }
  .wiz-nav { flex-wrap: wrap; }
  .wiz-nav .btn { flex: 1; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .trust { padding: 22px 18px; gap: 14px; }
}
.pay-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 18px 0 8px;
  padding: 18px;
  border: 1px solid #eef0f3;
  border-radius: 18px;
  background: #fffaf0;
}
.pay-box code { display: block; word-break: break-all; margin: 8px 0; font-size: 14px; }
.pay-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.dns-box {
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed var(--gold);
  border-radius: 16px;
  background: #fffdf6;
}
.dns-box code { word-break: break-all; }
.pay-deadline {
  margin: 12px 0 16px;
  padding: 12px 14px;
  background: #fff8e8;
  border: 1px solid #ead7a0;
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}
#main { overflow-x: hidden; }
.page-shell,
.page-shell.wide {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 28px 28px 80px;
}
.page-shell h1 { letter-spacing: -.04em; margin: 0 0 10px; }
.page-shell .lead { color: var(--muted); }
.manage-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.manage-page .lead { margin-left: auto; margin-right: auto; }
.manage-page .wizard-steps,
.manage-page .alert-box,
.manage-page .manage-card { text-align: left; }
.manage-page .alert-box {
  width: 100%;
  max-width: var(--form-max);
}
.page-shell .wizard-steps,
.page-shell .wizard,
.page-shell .manage-card,
.page-shell .sign-box,
.page-shell .contact-card {
  width: 100%;
  max-width: var(--form-max);
  margin-left: auto;
  margin-right: auto;
}
.sign-box, .manage-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  margin: 18px auto;
}
.sign-how { color: var(--muted); font-size: 14px; }
.slide-lock {
  margin: 18px 0;
  user-select: none;
}
.slide-track {
  position: relative;
  height: 52px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid #e6e8ec;
  overflow: hidden;
}
.slide-track span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #8a8478;
  pointer-events: none;
}
.slide-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  cursor: grab;
  box-shadow: 0 8px 16px rgba(194, 146, 26, .28);
  z-index: 1;
  display: grid;
  place-items: center;
}
.slide-thumb svg { width: 20px; height: 20px; display: block; }
.slide-lock.is-ok .slide-track { background: var(--green-bg); border-color: #b7e4c7; }
.slide-lock.is-ok .slide-track span { color: var(--green); }
.slide-lock.is-ok .slide-thumb { background: var(--green); box-shadow: 0 8px 16px rgba(22, 163, 74, .22); }
.profile-pay {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}
.profile-card {
  width: min(520px, 100%);
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 28px;
  padding: 36px 28px 32px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, .08);
}
.profile-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.profile-card h1 { font-size: clamp(22px, 4vw, 30px); word-break: break-all; }
.profile-amount {
  margin: 8px 0 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.profile-amount small { font-size: 16px; color: var(--muted); }
.profile-qr-wrap {
  margin: 22px auto 16px;
  padding: 16px;
  background: #fffdf6;
  border: 1px solid #ead7a0;
  border-radius: 22px;
  display: inline-grid;
}
.profile-addr { font-size: 15px; word-break: break-all; display: block; margin: 0 0 18px; }
.profile-addr-box {
  position: relative;
  width: 100%;
  margin: 4px 0 18px;
  text-align: left;
}
.profile-addr-input,
.page-shell .profile-addr-input {
  width: 100%;
  padding: 16px 56px 16px 18px !important;
  font-size: 13px;
  letter-spacing: .01em;
  word-break: break-all;
  cursor: text;
}
.profile-addr-copy {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e7ebf0;
  color: #8a8478;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.profile-addr-copy:hover,
.profile-addr-copy:focus-visible {
  outline: 0;
  color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold), 0 0 0 4px rgba(194, 146, 26, .12);
}
.profile-addr-copy svg { width: 18px; height: 18px; display: block; }
.profile-addr-copy .ico-check { display: none; }
.profile-addr-copy.is-on {
  color: var(--green);
  box-shadow: inset 0 0 0 1px #b7e4c7;
  background: var(--green-bg);
}
.profile-addr-copy.is-on .ico-copy { display: none; }
.profile-addr-copy.is-on .ico-check { display: block; }
.profile-card .pay-actions { justify-content: center; }
.watch-live {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0 0;
  padding: 16px 18px;
  border: 1px solid #ead7a0;
  background: #fffdf6;
  border-radius: 18px;
}
.watch-live strong { display: block; }
.watch-live p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.watch-live.is-ok { border-color: #b7e4c7; background: var(--green-bg); }
.watch-radar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--gold) 0 7px, transparent 8px);
  box-shadow: 0 0 0 0 rgba(194, 146, 26, .45);
  animation: watchPulse 1.6s ease-out infinite;
}
.watch-live.is-ok .watch-radar { animation: none; background: radial-gradient(circle at center, var(--green) 0 7px, transparent 8px); }
@keyframes watchPulse {
  0% { box-shadow: 0 0 0 0 rgba(194, 146, 26, .4); }
  70% { box-shadow: 0 0 0 16px rgba(194, 146, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 146, 26, 0); }
}
.builders-page .lead-sm { color: var(--muted); max-width: 720px; }
.builder-wizard, .builder-kits { margin: 28px 0 40px; }
.builder-picks, .builder-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.builder-pick, .builder-lang {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: #3f4654;
}
.builder-pick.is-on, .builder-lang.is-on {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--ink);
}
.builder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.builder-grid article {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 20px;
}
.builder-grid h3 { margin: 0 0 8px; font-size: 17px; letter-spacing: -.03em; }
.builder-grid p { margin: 0 0 14px; color: var(--muted); }
.builder-grid article.is-on {
  border-color: var(--gold);
  background: var(--gold-soft);
}
#builderHint { margin: 8px 0 0; }
@media (max-width: 900px) {
  .builder-grid { grid-template-columns: 1fr; }
}
.sign-how { color: var(--muted); font-size: 14px; line-height: 1.5; }
.sign-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: #f8f9fb;
  border: 1px solid #dce1e7;
  border-radius: 14px;
}
.sign-line .mono { flex: 1; }
.split-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .split-cards { grid-template-columns: 1fr 1fr; }
}
.box-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
  font-weight: 600;
}
.check-line input { margin-top: 4px; }
.danger-box {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid #f1c0c0;
  background: #fff7f7;
  border-radius: 16px;
}
.legal-page { max-width: var(--page-max); }
.legal-page h2 { margin-top: 28px; }
.legal-page ul { padding-left: 18px; }
.legal-nav { margin-top: 32px; color: var(--muted); }
.dev-list { padding-left: 0; list-style: none; display: grid; gap: 8px; }
.dev-list li { padding: 10px 12px; background: #fffaf0; border-radius: 12px; }
.code-card {
  margin: 16px 0 22px;
  border: 1px solid #ece8de;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.code-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fffaf0;
  font-weight: 700;
}
.code-card header div { display: flex; gap: 8px; flex-wrap: wrap; }
.code-card pre {
  margin: 0;
  padding: 16px;
  overflow: auto;
  font-size: 13px;
  line-height: 1.5;
  background: #1a1a1a;
  color: #f5f1e8;
}
.dns-row { margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid #f0e6c8; }
.dns-row:last-child { border-bottom: 0; margin: 0; }
.dns-row p { margin: 6px 0 0; }
.dns-row span { color: #8b93a0; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-right: 8px; }
.contact-details { margin-top: 28px; border: 1px solid var(--line); border-radius: 18px; padding: 8px 16px 16px; }
.contact-details summary { cursor: pointer; font-weight: 700; padding: 12px 0; }
.profile-msg {
  width: min(520px, 100%);
  display: grid;
  justify-items: stretch;
}
.profile-msg-btn {
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
}
.profile-msg-btn .btn-txt {
  line-height: 1;
}
.profile-msg-panel {
  margin-top: 14px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 28px;
  padding: 22px 28px 28px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, .08);
  text-align: left;
}
.integrate-grid { display: grid; gap: 18px; }
.integrate-card {
  background: #111;
  color: #f5f1e8;
  border-radius: 18px;
  padding: 20px;
  overflow: auto;
}
.integrate-card h3 { color: #d4a84a; margin: 0 0 12px; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.integrate-card pre { margin: 0; font-size: 13px; line-height: 1.55; white-space: pre-wrap; }
@media (max-width: 640px) {
  .pay-box { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .nav { padding: 12px 14px; }
  .btn-nav { display: none; }
  .hero { padding-left: 14px; padding-right: 14px; }
  .hero h1 { font-size: 34px; }
  .lead { font-size: 16px; }
  .brand span { font-size: 17px; }
}
