:root {
  --ink: #4a3436;
  --muted: #765d60;
  --canvas: #fffaf1;
  --app-canvas: #faf3ea;
  --surface: #ffffff;
  --surface-warm: #ffeef0;
  --surface-muted: #f8f0f0;
  --outline: #f0d8d1;
  --coral: #a83e33;
  --coral-pressed: #773027;
  --rose: #f6a2aa;
  --peach: #ffd9c8;
  --sage: #7ea68a;
  --mint: #aaddbf;
  --lavender: #d8cdea;
  --gold: #eab308;
  --gold-soft: #ffd166;
  --primary: var(--coral);
  --pair-plum: #b85c4d;
  --pair-deep: #8f302b;
  --plum: #4d3a96;
  --violet: #7a2cff;
  --shadow-soft: 0 16px 30px rgb(246 162 170 / 24%), 0 5px 12px rgb(74 52 54 / 8%);
  --shadow-card: 0 12px 26px rgb(74 52 54 / 6%), 0 1px 0 rgb(255 255 255 / 72%) inset;
  --shadow-raised: 0 9px 18px rgb(233 111 106 / 30%), -2px -3px 8px rgb(255 255 255 / 55%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--app-canvas);
  color: var(--ink);
  font-family: "Segoe UI Variable", "Segoe UI", Roboto, Arial, sans-serif;
  font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.band {
  padding: 72px 20px;
}

.hero-band {
  min-height: 92svh;
  background:
    linear-gradient(135deg, rgb(255 250 241 / 96%), rgb(255 238 240 / 88)),
    linear-gradient(135deg, var(--canvas), var(--surface-warm));
  padding-top: 24px;
}

.warm {
  background: var(--surface-warm);
}

.footer-band {
  background: var(--surface);
}

.shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.topbar,
.brand,
.topnav,
.language-switch,
.actions,
.action-row,
.return-card {
  display: flex;
  align-items: center;
}

.topbar {
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgb(240 216 209 / 78%);
  border-radius: 22px;
  background: rgb(255 255 255 / 70%);
  box-shadow: 0 12px 26px rgb(74 52 54 / 5%);
  padding: 10px 12px;
}

.brand {
  gap: 12px;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 82%);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: #fff;
  box-shadow: var(--shadow-raised);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topnav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.topnav a {
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  padding: 10px 12px;
}

.topnav a:hover,
.topnav a:focus-visible {
  background: rgb(255 255 255 / 78%);
  color: var(--primary);
}

.language-switch {
  flex: 0 0 auto;
  gap: 2px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  background: rgb(255 255 255 / 78%);
  padding: 3px;
}

.language-switch button {
  min-width: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  padding: 9px 10px;
}

.language-switch button.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 7px 14px rgb(168 62 51 / 18%);
}

.language-switch button:focus-visible {
  outline: 3px solid rgb(233 111 106 / 24%);
  outline-offset: 2px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 54px;
  align-items: start;
  padding-top: 56px;
}

.pill,
.light-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.pill {
  border: 1px solid var(--outline);
  background: var(--surface);
  color: var(--primary);
  padding: 10px 14px;
}

.hero-copy .pill {
  align-items: flex-start;
  text-align: left;
}

.hero-copy .pill svg {
  margin-top: 3px;
}

.light-pill {
  background: rgb(255 255 255 / 16%);
  color: #fff;
  padding: 10px 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4.7vw, 52px);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 450;
  line-height: 1.58;
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 15px 22px;
  text-align: center;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.button svg,
.pill svg,
.light-pill svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 24px rgb(233 111 106 / 32%);
}

.button.payment-cta {
  min-height: 62px;
  border: 1px solid rgb(255 255 255 / 64%);
  background: linear-gradient(135deg, var(--coral), var(--pair-plum));
  font-size: 18px;
  box-shadow:
    0 18px 34px rgb(233 111 106 / 30%),
    0 0 0 8px rgb(233 111 106 / 10%),
    0 0 34px rgb(142 108 136 / 20%);
}

.button.payment-cta svg {
  width: 24px;
  height: 24px;
}

.button.soft {
  border: 1px solid var(--peach);
  background: var(--surface);
  color: var(--primary);
}

.button.light {
  border: 1px solid rgb(255 255 255 / 72%);
  background: rgb(255 255 255 / 12%);
  color: #fff;
}

.button.full {
  width: 100%;
}

.checkout-card .button.primary {
  min-height: 62px;
  background: linear-gradient(135deg, var(--coral), var(--coral-pressed));
  font-size: 18px;
  box-shadow:
    0 16px 28px rgb(233 111 106 / 30%),
    0 0 0 7px rgb(233 111 106 / 10%);
}

.checkout-card .button.primary:hover,
.button.payment-cta:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.checkout-card .button.primary:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.checkout-card .button.primary.is-loading:disabled {
  cursor: wait;
  opacity: 0.78;
}

.return-band {
  background: var(--surface-warm);
  padding-block: 28px;
}

.is-hidden {
  display: none;
}

.return-card {
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--outline);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.return-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--sage), #aaddbf);
  color: #fff;
}

.return-icon svg {
  width: 26px;
  height: 26px;
}

.return-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 500;
}

.eyebrow {
  color: var(--ink) !important;
  font-size: 21px;
  font-weight: 700 !important;
}

.section-head {
  max-width: 860px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(29px, 3.4vw, 38px);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 450;
  line-height: 1.58;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.phone {
  border: 1px solid var(--outline);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.hero-phone .phone {
  width: 330px;
}

.phone-title {
  padding: 4px 8px 12px;
  font-weight: 700;
}

.phone-screen {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgb(240 216 209 / 74%);
  border-radius: 23px;
  background: var(--app-canvas);
  padding: 14px;
}

.hero-phone .phone-screen {
  min-height: 600px;
}

.app-header,
.bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-header strong {
  font-size: 18px;
  font-weight: 700;
}

.header-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--mint);
}

.pair-hero {
  position: relative;
  display: grid;
  min-height: 176px;
  align-content: center;
  gap: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--coral), var(--pair-plum));
  color: #fff;
  padding: 20px;
  box-shadow: 0 12px 24px rgb(246 162 170 / 20%);
}

.pair-hero.compact {
  min-height: 158px;
  padding: 16px;
}

.pair-status-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.partner-avatar {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 2px solid rgb(255 255 255 / 56%);
  border-radius: 999px;
  background: rgb(255 255 255 / 20%);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.partner-avatar i {
  position: absolute;
  right: 1px;
  bottom: 3px;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--mint);
}

.paired-label,
.presence-text {
  display: block;
  color: rgb(255 255 255 / 84%);
  font-weight: 700;
}

.paired-label {
  font-size: 13px;
}

.presence-text {
  margin-top: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.pair-hero b {
  display: block;
  max-width: 190px;
  overflow: hidden;
  font-size: 27px;
  font-weight: 750;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pair-hero.compact b {
  font-size: 23px;
}

.round-icons {
  display: flex;
  gap: 8px;
}

.round-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgb(255 255 255 / 18%);
  color: #fff;
}

.round-icon svg {
  width: 24px;
  height: 24px;
}

.action-row {
  gap: 12px;
}

.action-row a {
  position: relative;
  flex: 1;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1.6px solid rgb(168 62 51 / 70%);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #ffa39c 0%,
    #ff7c73 22%,
    #a83e33 48%,
    #b85c4d 74%,
    #8f302b 100%
  );
  color: #fff;
  box-shadow:
    0 17px 30px rgb(168 62 51 / 44%),
    0 5px 9px rgb(33 23 21 / 18%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  padding: 16px 12px 18px;
  transform: translateY(0);
}

.action-row a::before,
.action-row a::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.action-row a::before {
  inset: 0;
  background:
    radial-gradient(circle at 32% 22%, rgb(255 255 255 / 58%), rgb(255 255 255 / 18%) 32%, transparent 64%),
    linear-gradient(180deg, transparent 52%, rgb(0 0 0 / 20%) 100%);
}

.action-row a::after {
  top: 13px;
  left: 24%;
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 76%);
}

.action-row a:nth-child(2)::after {
  left: 20%;
}

.action-row a > svg,
.action-row a > span {
  position: relative;
  z-index: 1;
}

.action-row a:nth-child(1) svg {
  padding: 8px;
  border: 2px solid rgb(109 43 91 / 72%);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgb(255 247 243 / 96%), rgb(255 247 243 / 88%)),
    linear-gradient(135deg, #fff0a8, #ff7a91, #8d4de8);
  color: #6d2b5b;
  box-shadow: 0 5px 10px rgb(97 40 93 / 28%);
}

.action-row a:nth-child(2) svg {
  padding: 7px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #e85d75 0 25%, #fffbf4 25% 100%);
  color: #9c332c;
  box-shadow: 0 5px 10px rgb(122 46 37 / 28%);
}

.pulse-paws {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.2px solid rgb(255 255 255 / 46%);
  border-radius: 16px;
  background: rgb(255 255 255 / 18%);
  color: #fff;
  font-weight: 700;
  box-shadow: none;
}

.pulse-paws svg {
  width: 21px;
  height: 21px;
}

.action-row svg {
  width: 56px;
  height: 52px;
}

.mini-title {
  font-size: 17px;
  font-weight: 650;
}

.proposal-card,
.soft-panel,
.info-card,
.step-card,
.contact-card {
  border: 1px solid var(--outline);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.proposal-card {
  display: grid;
  gap: 7px;
  padding: 18px;
}

.proposal-card span,
.proposal-card small,
.soft-panel > span:not(.panel-icon),
.thought-card > span:not(.thought-icon) {
  color: var(--muted);
  font-weight: 450;
}

.proposal-card strong {
  font-size: 19px;
  font-weight: 700;
}

.proposal-card a {
  width: fit-content;
  margin-top: 5px;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  padding: 9px 13px;
}

.soft-panel {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 16px;
}

.soft-panel > strong,
.soft-panel > span:not(.panel-icon) {
  grid-column: 2;
}

.panel-icon {
  grid-row: 1 / span 2;
}

.bottom-nav {
  margin-top: auto;
  border: 1px solid var(--outline);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 10px 20px rgb(255 217 200 / 14%);
  color: var(--ink);
  font-size: 10px;
  font-weight: 650;
  padding: 8px 4px;
}

.bottom-nav a {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 4px;
  border-radius: 18px;
  color: var(--ink);
  padding: 0 2px;
  text-align: center;
}

.bottom-nav a span {
  display: grid;
  width: 44px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: transparent;
}

.bottom-nav svg {
  width: 20px;
  height: 20px;
}

.bottom-nav b {
  overflow: hidden;
  max-width: 100%;
  font: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bottom-nav a.active {
  font-weight: 700;
}

.bottom-nav a.active span {
  background: rgb(255 217 200 / 88%);
  color: var(--ink);
}

.thoughts-intro {
  margin: -6px 0 2px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.35;
}

.thought-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 92px;
  gap: 4px 14px;
  align-items: center;
  border-radius: 20px;
  color: #fff;
  padding: 16px;
}

.thought-card > strong,
.thought-card > span:not(.thought-icon) {
  grid-column: 2;
}

.thought-card span:not(.thought-icon) {
  color: rgb(255 255 255 / 82%);
}

.thought-card strong {
  font-size: 19px;
  font-weight: 700;
}

.thought-card.coral {
  background: linear-gradient(135deg, #ff6b6b, #ffd166);
}

.thought-card.coral .thought-icon {
  color: #2f674f;
}

.thought-card.violet {
  background: linear-gradient(135deg, #7a2cff, #4f2bc8);
}

.thought-card.violet .thought-icon {
  color: var(--plum);
}

.thought-card.rose {
  background: linear-gradient(135deg, #8c3454, #e0527d);
}

.thought-card.rose .thought-icon {
  color: #e0527d;
}

.thought-card.plum {
  background: linear-gradient(135deg, var(--plum), #8c3454);
}

.thought-card.plum .thought-icon {
  color: #8c3454;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.step-card,
.contact-card {
  padding: 20px;
}

.info-card h3,
.step-card h3,
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.info-card p,
.step-card p,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 450;
}

.section-head a,
.info-card a,
.copyright a {
  color: var(--primary);
  font-weight: 650;
}

.badge,
.panel-icon,
.thought-icon,
.step-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  color: #fff;
  font-weight: 700;
}

.accent-green {
  background: linear-gradient(135deg, #22c55e, #86efac);
}

.accent-blue {
  background: linear-gradient(135deg, #38bdf8, #a78bfa);
}

.accent-warm {
  background: linear-gradient(135deg, #ff6b6b, #ffd166);
}

.accent-pink {
  background: linear-gradient(135deg, #ff7a8a, #ffd166);
}

.accent-orange {
  background: linear-gradient(135deg, #ff6b6b, #ffb86c);
}

.accent-purple {
  background: linear-gradient(135deg, #8b5cf6, #f0abfc);
}

.badge svg,
.panel-icon svg,
.step-card span svg {
  width: 24px;
  height: 24px;
}

.panel-icon,
.thought-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0;
}

.thought-icon {
  grid-row: 1 / span 2;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: rgb(255 255 255 / 84%);
  color: var(--plum);
}

.thought-icon svg {
  width: 30px;
  height: 30px;
}

.payment-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgb(255 255 255 / 72%), transparent 28%),
    linear-gradient(135deg, var(--canvas), var(--surface-warm));
}

.payment-band .section-head {
  max-width: 760px;
}

.payment-band .section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.payment-band .section-head p {
  font-size: 18px;
}

.magic-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%, rgb(255 255 255 / 18%), transparent 28%),
    linear-gradient(135deg, var(--coral), var(--pair-plum));
  box-shadow:
    0 24px 52px rgb(233 111 106 / 24%),
    0 0 0 1px rgb(255 255 255 / 55%),
    0 0 52px rgb(142 108 136 / 18%);
  padding: 34px;
}

.magic-copy {
  color: #fff;
}

.magic-copy h2 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 750;
  line-height: 1.18;
}

.magic-copy p:not(.light-pill) {
  max-width: 650px;
  color: rgb(255 255 255 / 88%);
  font-size: 18px;
  font-weight: 450;
}

.checkout-card {
  border-radius: 24px;
  background: rgb(255 255 255 / 98%);
  box-shadow:
    0 24px 42px rgb(74 52 54 / 18%),
    0 0 0 1px rgb(255 255 255 / 80%);
  padding: 26px;
}

.checkout-card h3 {
  margin-bottom: 6px;
  color: var(--coral);
  font-size: 46px;
  font-weight: 750;
  line-height: 1;
}

.checkout-card p {
  color: var(--muted);
  font-weight: 450;
}

.checkout-card label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 650;
}

.input-shell {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  width: 100%;
  height: 60px;
  margin-bottom: 16px;
  border: 1px solid var(--outline);
  border-radius: 18px;
  background: var(--surface-muted);
  color: var(--muted);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 80%);
}

.input-shell svg {
  width: 24px;
  height: 24px;
  justify-self: center;
}

.checkout-card input {
  width: 100%;
  height: 60px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 22px;
  font-weight: 650;
  padding: 0 16px 0 0;
}

.input-shell:focus-within {
  outline: 4px solid rgb(233 111 106 / 20%);
}

.checkout-card input:focus {
  outline: 0;
}

.consent-check {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0 0 16px !important;
  border: 1px solid var(--outline);
  border-radius: 16px;
  background: rgb(248 240 240 / 72%);
  color: var(--muted) !important;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500 !important;
  line-height: 1.45;
  padding: 12px;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--coral);
  cursor: pointer;
}

.consent-check span {
  min-width: 0;
}

.consent-check a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.consent-check:focus-within {
  outline: 4px solid rgb(233 111 106 / 20%);
}

.form-error {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--primary) !important;
  font-size: 14px;
  font-weight: 650 !important;
}

.facts {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  list-style: none;
}

.facts li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.facts svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--sage);
}

.copyright {
  margin: 40px 0 0;
  color: var(--muted);
}

.footer-meta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 18px;
  margin-top: 34px;
  border-top: 1px solid var(--outline);
  padding-top: 22px;
}

.footer-company,
.footer-links {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.footer-company strong {
  color: var(--ink);
  font-size: 17px;
}

.footer-company span,
.footer-links a {
  display: block;
}

.footer-links {
  align-content: start;
  justify-items: start;
}

.footer-links a {
  color: var(--primary);
  font-weight: 700;
}

[data-lang-panel][hidden] {
  display: none !important;
}

.legal-page .brand-mark {
  color: #fff;
  font-size: 14px;
}

.legal-hero {
  background: linear-gradient(135deg, var(--canvas), var(--surface-warm));
  padding-top: 24px;
}

.legal-title {
  max-width: 820px;
  padding-top: 64px;
}

.legal-title .pill {
  display: none;
}

.legal-title h1 {
  max-width: 720px;
}

.legal-actions {
  margin-top: 24px;
}

.legal-updated {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 500;
}

.legal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-summary,
.legal-card {
  border: 1px solid var(--outline);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 26px rgb(74 52 54 / 6%);
}

.legal-summary {
  position: sticky;
  top: 18px;
  padding: 24px;
}

.legal-summary h2,
.legal-card h2 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.28;
}

.legal-summary ul,
.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.58;
}

.legal-card {
  padding: 34px;
}

.legal-card section + section {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--outline);
}

.legal-card p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.72;
}

.legal-card a {
  color: var(--primary);
  font-weight: 650;
  position: relative;
  z-index: 1;
  cursor: pointer;
  pointer-events: auto;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
  touch-action: manipulation;
}

@media (max-width: 980px) {
  .hero-layout,
  .magic-panel,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

  .hero-phone {
    display: none;
  }

  .phone-grid,
  .card-grid,
  .card-grid.three,
  .footer-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .band {
    padding: 54px 16px;
  }

  .hero-band {
    padding-top: 18px;
  }

  .topbar {
    align-items: flex-start;
  }

  .language-switch {
    margin-left: auto;
  }

  .topnav {
    display: none;
  }

  .hero-layout {
    padding-top: 42px;
  }

  h1 {
    font-size: 38px;
  }

  .lead,
  .section-head p,
  .magic-copy p:not(.light-pill) {
    font-size: 17px;
  }

  .phone-grid,
  .card-grid,
  .card-grid.three,
  .footer-meta {
    grid-template-columns: 1fr;
  }

  .phone-screen {
    min-height: 650px;
  }

  .magic-panel {
    border-radius: 24px;
    padding: 20px;
  }

  .magic-panel .checkout-card {
    order: -1;
  }

  .return-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-title {
    padding-top: 48px;
  }

  .legal-card {
    padding: 22px;
  }

  .button {
    width: 100%;
  }
}
