﻿:root {
  --bg: #f3efe6;
  --bg-deep: #ebe4d7;
  --surface: rgba(255, 252, 246, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --text: #18211d;
  --muted: #5b6763;
  --line: rgba(24, 33, 29, 0.1);
  --primary: #015de2;
  --primary-dark: #123f8f;
  --accent: #66d9b4;
  --accent-dark: #0e8942;
  --shadow: 0 28px 80px rgba(22, 24, 21, 0.09);
  --shadow-soft: 0 12px 36px rgba(22, 24, 21, 0.07);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
  --radius-xl: 34px;
  --radius-lg: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(102, 217, 180, 0.2), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(1, 93, 226, 0.11), transparent 28%),
    linear-gradient(180deg, #faf7f1 0%, var(--bg) 55%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0) 30%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell,
.legal-shell {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1140px, calc(100% - 32px));
    margin: 8px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(24, 33, 29, 0.07);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  position: sticky;
    top: 8px;
    z-index: 100;
}

/* â”€â”€â”€ Hamburger (mobile) â”€â”€â”€ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
}

.nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.nav a.is-active,
.lang-switch {
  color: var(--primary-dark);
}

.nav a:hover {
  color: var(--text);
}

.lang-switch {
  padding: 7px 12px;
  border: 1px solid rgba(1, 93, 226, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

/* â”€â”€â”€ Legacy hero (kept for non-home pages) â”€â”€â”€ */
.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  align-items: stretch;
  padding: 28px 0 18px;
}

.hero-copy,
.hero-card,
.panel,
.link-card,
.legal-page {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.panel,
.link-card {
  border-radius: var(--radius-xl);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 42px 40px;
  background:
    radial-gradient(circle at top left, rgba(102, 217, 180, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(252, 248, 241, 0.9));
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 93, 226, 0.09), transparent 68%);
}

.hero-card {
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(102, 217, 180, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(245, 251, 247, 0.98), rgba(238, 247, 241, 0.92));
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEW HOME PAGE â€“ Modern Product Landing
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ Full-Width Hero â”€â”€â”€ */
.hero-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0 48px;
  min-height: 520px;
}

.hero-full-text {
  max-width: 540px;
}

.hero-full-text h1 {
  max-width: none;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.06;
  margin: 10px 0 18px;
}

.hero-full-text .lede {
  font-size: 1.12rem;
  max-width: 440px;
}

.hero-full-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

/* â”€â”€â”€ Trust Universe â€“ Phone Device Frame â”€â”€â”€ */
.tu-device {
  position: absolute;
  /* Measured from hand-phone.png: screen inner area */
  /* PNG 1160Ã—772 â†’ screen starts x:515 y:65 w:340 h:650 */
  left: 44.4%;
  top: 8.4%;
  width: 29.3%;
  height: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
  z-index: 5;
}

.tu-device-screen {
  background: transparent;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  height: 560px;
  position: relative;
  overflow: visible;
}

.tu-device-screen::before {
  content: '';
  position: absolute;
  inset: 0;
    background: transparent;
    border-radius: 22px;
    z-index: 0;
  }
  
  .tu-notch {
    display: none;
}

.tu-notch-pill {
  width: 90px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 12px;
  display: flex;
  align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
}

.tu-notch-cam {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #1e3a5f, #0d1b2a);
  border: 1.5px solid #2a2a3e;
}

.tu-navbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px 10px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-top: 55px;
    border-radius: 20px 20px 0 0;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-15px);
  }
  
  .tu-navbar-title {
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--text);
}

.tu-navbar-spacer {
  flex: 1;
}

.tu-navbar-status {
  font-size: 0.6rem;
  font-weight: 700;
  color: #20be62;
  background: rgba(32, 190, 98, 0.1);
  padding: 3px 10px;
  border-radius: 999px;
}

.tu-phone-logo {
  width: 18px;
  height: 18px;
}

.tu-screen-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    padding: 12px;
  gap: 8px;
  overflow: visible;
    z-index: 10;
    margin-left: -25px;
    pointer-events: none;
}

.tu-universe-area {
  position: relative;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  overflow: visible;
  margin-top: -140px;
  margin-left: -10px;
}

.tu-ring {
  position: absolute;
  border: 2px dashed rgba(1, 93, 226, 0.25);
  border-radius: 50%;
  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: tu-spin 40s linear infinite;
  }
  
  .tu-ring-1 {
    width: 150px;
    height: 150px;
}

.tu-ring-2 {
  width: 230px;
  height: 230px;
  border-color: rgba(32, 190, 98, 0.22);
  animation-direction: reverse;
  animation-duration: 50s;
}

.tu-ring-3 {
  width: 310px;
  height: 310px;
  border-color: rgba(1, 93, 226, 0.18);
  animation-duration: 60s;
}

@keyframes tu-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.tu-center-person {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
    gap: 2px;
}

.tu-center-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(32, 190, 98, 0.15);
  animation: tu-center-pulse-anim 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes tu-center-pulse-anim {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

    50% {
      transform: translate(-50%, -50%) scale(1.4);
      opacity: 0;
    }
}

.tu-center-person img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #20be62;
  box-shadow: 0 4px 16px rgba(32, 190, 98, 0.3);
}

.tu-center-person .tu-person-status {
  bottom: 16px;
  right: -2px;
}

.tu-center-person .tu-person-name {
  font-size: 0.58rem;
}

.tu-status-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: #20be62;
  text-align: center;
  flex-shrink: 0;
  margin-bottom: 0;
  position: relative;
  top: -35px;
}

/* â”€â”€â”€ Trust Universe People (inside phone) â”€â”€â”€ */
.tu-person {
  position: absolute;
  display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  z-index: 3;
}

.tu-person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.tu-person-status {
  position: absolute;
  bottom: 14px;
    right: -2px;
    width: 12px;
    height: 12px;
  border-radius: 50%;
  border: 2px solid white;
}

.tu-safe {
  background: #20be62;
}

.tu-active {
  background: #015de2;
}

.tu-alert {
  background: #e53e3e;
  animation: tu-alert-pulse 1.5s infinite;
}

@keyframes tu-alert-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,62,62,0.5); }
                                50% {
                                  box-shadow: 0 0 0 5px rgba(229, 62, 62, 0);
                                }
}

.tu-person-name {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
  padding: 1px 6px;
  border-radius: 999px;
  white-space: nowrap;
}

/* â”€â”€â”€ Orbit positions â”€â”€â”€ */
.tu-orbit {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tu-orbit-1 {
  animation: tu-orbit1 18s linear infinite;
}

.tu-orbit-2 {
  animation: tu-orbit2 24s linear infinite reverse;
}

.tu-orbit-3 {
  animation: tu-orbit3 21s linear infinite;
}

.tu-orbit-4 {
  animation: tu-orbit4 28s linear infinite reverse;
}

@keyframes tu-orbit1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(145px) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(145px) rotate(-360deg);
  }
}

@keyframes tu-orbit2 {
  0% {
    transform: translate(-50%, -50%) rotate(45deg) translateX(168px) rotate(-45deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(405deg) translateX(168px) rotate(-405deg);
  }
}

@keyframes tu-orbit3 {
  0% {
    transform: translate(-50%, -50%) rotate(160deg) translateX(132px) rotate(-160deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(520deg) translateX(132px) rotate(-520deg);
  }
}

@keyframes tu-orbit4 {
  0% {
    transform: translate(-50%, -50%) rotate(250deg) translateX(162px) rotate(-250deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(610deg) translateX(162px) rotate(-610deg);
  }
}

/* â”€â”€â”€ Hand holding phone (PNG) â”€â”€â”€ */
.tu-hand-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1010px;
  overflow: visible;
}

.tu-hand-img-wrap {
  display: block;
  pointer-events: none;
  user-select: none;
}

.tu-hand-img {
  width: 100%;
  height: auto;
  display: block;
}
/* â”€â”€â”€ Speech Bubbles â”€â”€â”€ */
.tu-bubble {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--text);
  font-size: 0.58rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  z-index: 6;
  opacity: 0;
  pointer-events: none;
}
.tu-bubble::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
}
.tu-orbit-1 .tu-bubble {
  animation: tu-bubble-fade 8s ease-in-out infinite;
  animation-delay: 0.5s;
}

.tu-orbit-3 .tu-bubble {
  animation: tu-bubble-fade 8s ease-in-out infinite;
  animation-delay: 4.5s;
}
@keyframes tu-bubble-fade {

  0%,
  10% {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }

  20%,
  70% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  80%,
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
  }
}
/* â”€â”€â”€ Bottom bar (trust button) â”€â”€â”€ */
.tu-bottom-bar {
  padding: 0 16px 18px;
  margin-top: -68px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  border-radius: 0 0 28px 28px;
  overflow: visible;
}
.tu-trust-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #20be62, #0e8942);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(32, 190, 98, 0.35);
  position: relative;
  top: -100px;
  left: -20px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 120ms ease;
  overflow: visible;
  animation: tu-btn-pulse 2.5s ease-in-out infinite;
}

@keyframes tu-btn-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(32, 190, 98, 0.35);
  }

    50% {
      box-shadow: 0 4px 20px rgba(32, 190, 98, 0.35), 0 0 0 10px rgba(32, 190, 98, 0.12);
    }
}

.tu-trust-btn.is-pressing {
  animation: none;
}

.tu-trust-btn:active {
  transform: scale(0.95);
}

/* â”€â”€â”€ Alarm overlay â”€â”€â”€ */
.tu-alarm-overlay {
  position: absolute;
  inset: -1px 3px -5px 3px;
  border-radius: 28px;
  background: rgba(0, 0, 0, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  z-index: 20;
}

.tu-alarm-overlay.is-active {
  opacity: 1;
  transform: scale(0.70) translate(-20px, -63px);
  bottom: -40px;
}

.tu-alarm-logo-wrap {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  animation: none;
}

.tu-alarm-overlay.is-active .tu-alarm-logo-wrap {
  animation: tu-logo-glow 1.5s ease-in-out infinite;
}

.tu-alarm-logo {
  width: 109px;
  height: 109px;
  filter: drop-shadow(0 0 18px rgba(32, 190, 98, 0.7));
  opacity: 0.8;
}

.tu-alarm-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
    margin: 0;
    opacity: 0;
  }
  
  .tu-alarm-overlay.is-active .tu-alarm-text {
    animation: tu-text-fade 4s ease forwards;
  }
  
  @keyframes tu-text-fade {
  
    0%,
    60% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  @keyframes tu-logo-glow {
  
    0%,
    100% {
      transform: scale(1);
      filter: drop-shadow(0 0 12px rgba(32, 190, 98, 0.4));
    }
  
    50% {
      transform: scale(1.12);
      filter: drop-shadow(0 0 28px rgba(32, 190, 98, 0.8));
    }
  }
  
/* â”€â”€â”€ Flying alarm messages â”€â”€â”€ */
.tu-fly-msg {
  position: absolute;
  left: 44%;
  background: #fef9e7;
  color: #333;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  pointer-events: none;
  z-index: 100;
  max-width: 200px;
  white-space: normal;
  line-height: 1.3;
  animation: tu-fly-out 8s ease-out forwards;
}

@keyframes tu-fly-out {
  0%   { opacity: 0; transform: translate(var(--fly-x0, 0), var(--fly-y0, 0)) scale(0.7); }
  8%   { opacity: 1; transform: translate(calc(var(--fly-x1, -30px) * 0.3), calc(var(--fly-y1, 0px) * 0.3)) scale(1); }
  75%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--fly-x1, -260px), var(--fly-y1, -40px)) scale(0.85); }
}

  /* Press ring - around trust button */
  .tu-trust-btn::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 8px solid transparent;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 2;
  }
  
  .tu-trust-btn.is-pressing::after {
    border-color: #e53e3e;
    animation: tu-ring-fill 3s linear forwards;
  }
  
  @keyframes tu-ring-fill {
    0% {
      clip-path: polygon(50% 50%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
    }
    12.5% {
      clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
    }
    25% {
      clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%);
    }
    37.5% {
      clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 100% 100%);
    }
    50% {
      clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%);
    }
    62.5% {
      clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 0% 100%);
    }
    75% {
      clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 50%);
    }
    87.5% {
      clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
    }
    100% {
      clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
    }
  }

.tu-trust-logo {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 2;
}

.tu-trust-btn span {
  color: white;
  font-weight: 800;
  font-size: 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}


/* â”€â”€â”€ How It Works (Steps) â”€â”€â”€ */
.how-section {
  padding: 48px 0 56px;
}

.how-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 40%, rgba(102, 217, 180, 0.08), transparent 50%),
    radial-gradient(circle at 85% 60%, rgba(1, 93, 226, 0.06), transparent 50%),
    rgba(248, 250, 252, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.how-header {
  text-align: center;
  margin-bottom: 48px;
}

.how-header h2 {
  margin-top: 10px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step-item {
  text-align: center;
  padding: 32px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
  }
  
  .step-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 2.4rem;
  font-weight: 800;
  color: rgba(1, 93, 226, 0.12);
    line-height: 1;
}

.step-icon {
  margin-bottom: 14px;
}

.step-item h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

/* â”€â”€â”€ About Section â”€â”€â”€ */
.about-section {
  padding: 48px 0;
  scroll-margin-top: 80px;
}

.about-inner {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 30%, rgba(102,217,180,0.15), transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(1,93,226,0.1), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,249,0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-illustration {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
}

.about-text h2 {
  margin-bottom: 16px;
}

.about-text p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
  margin: 0 0 12px;
}

/* â”€â”€â”€ Pricing Section â”€â”€â”€ */
.pricing-section {
  padding: 64px 0;
  scroll-margin-top: 80px;
}

.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 30%, rgba(1, 93, 226, 0.06), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(32, 190, 98, 0.06), transparent 50%),
    rgba(248, 250, 252, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h2 {
  margin-bottom: 12px;
}

.pricing-header .lede {
  margin-bottom: 24px;
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.billing-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--muted);
  transition: all 160ms ease;
  font-family: inherit;
}

.billing-btn.is-active {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 12px rgba(1,93,226,0.25);
}

.save-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #20be62;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  margin-left: 4px;
  vertical-align: middle;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.plan-card {
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.plan-highlighted {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(1,93,226,0.04), rgba(255,255,255,0.95));
  box-shadow: 0 8px 40px rgba(1,93,226,0.12);
  position: relative;
}

.plan-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(32,190,98,0.1);
  color: #0e8942;
  margin-left: 8px;
    vertical-align: middle;
}

.badge-popular {
  background: var(--primary);
  color: white;
}

.plan-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.plan-price {
  margin-bottom: 18px;
  display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 2px;
  }
  
  .plan-price-spacer {
    flex: 1;
  }
  
  .plan-highlight {
    background: linear-gradient(135deg, rgba(1, 93, 226, 0.08), rgba(32, 190, 98, 0.08));
    border: 1px solid rgba(1, 93, 226, 0.15);
    border-radius: var(--radius-lg);
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 16px;
    margin-top: -4px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.price-suffix {
  font-size: 0.9rem;
  color: var(--muted);
  margin-left: 4px;
}

.plan-cta {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.plan-cta-primary {
  background: var(--primary);
  color: white;
}

.plan-cta-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.plan-cta-utility {
  background: rgba(102,217,180,0.15);
  border-color: rgba(14,137,66,0.2);
  color: #0e8942;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.plan-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-note {
  text-align: left;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 24px;
  line-height: 1.6;
}

/* â”€â”€â”€ Step Description â”€â”€â”€ */
.step-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 6px 0 0;
}

/* â”€â”€â”€ Contact Section â”€â”€â”€ */
.contact-section {
  padding: 64px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}

.contact-email-link a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1, 93, 226, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  align-self: flex-start;
}

.contact-result {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0;
  border-radius: 12px;
  min-height: 0;
  transition: all 0.3s;
}

.contact-result.success {
  background: rgba(32, 190, 98, 0.1);
  color: #0e8942;
  padding: 12px 16px;
}

.contact-result.error {
  background: rgba(229, 62, 62, 0.1);
  color: #c53030;
  padding: 12px 16px;
}
/* â”€â”€â”€ FAQ Section â”€â”€â”€ */
.faq-section {
  padding: 48px 0 64px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item-home {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item-home summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item-home summary::after {
  content: "\25BE";
  font-size: 1rem;
  color: var(--muted);
  transition: transform 200ms ease;
}

.faq-item-home[open] summary::after {
  transform: rotate(180deg);
}

.faq-item-home p {
  color: var(--muted);
  line-height: 1.65;
  margin: 12px 0 0;
  font-size: 0.95rem;
}

/* â”€â”€â”€ Cookie Banner â”€â”€â”€ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: #1a1a2e;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-accept {
  flex-shrink: 0;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 160ms ease;
}

.cookie-accept:hover {
  background: rgba(255,255,255,0.1);
}

/* â”€â”€â”€ New Footer â”€â”€â”€ */
.site-footer {
  margin-top: 0;
  padding: 48px 0 24px;
  background: #1a1a2e;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer-logo {
  width: 32px;
  height: 32px;
}

.site-footer .footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.store-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: block;
  opacity: 0.85;
  transition: opacity 160ms ease;
}

.store-badge:hover {
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  color: rgba(255,255,255,0.6);
  transition: color 160ms ease;
}

.social-icons a:hover {
  color: white;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 4px;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  transition: color 160ms ease;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1140px;
  margin: 32px auto 0;
  padding: 18px 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* â”€â”€â”€ Link Cards (updated) â”€â”€â”€ */
.link-card-arrow {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 200ms ease;
}

.link-card:hover .link-card-arrow {
  transform: translateX(4px);
}

.eyebrow,
.panel-kicker,
.link-card-label,
.legal-meta {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--primary-dark);
}

h1,
h2 {
  font-family: var(--serif);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 6vw, 4.9rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.lede,
.panel p,
.legal-page p,
.legal-page li,
.link-card span {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
}

.button-primary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(1, 93, 226, 0.18);
  color: var(--primary-dark);
}

.button-secondary {
  background: var(--primary);
  color: #fff;
}

.signal-stack {
  position: relative;
  height: 156px;
  margin-bottom: 18px;
}

.signal,
.signal-core {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.signal {
  border-top: 10px solid transparent;
  border-radius: 999px 999px 0 0;
}

.signal-1 {
  inset: 28px 24px auto;
  height: 92px;
  border-top-color: rgba(102, 217, 180, 0.95);
}

.signal-2 {
  inset: 46px 56px auto;
  height: 72px;
  border-top-color: #20be62;
}

.signal-3 {
  inset: 64px 90px auto;
  height: 54px;
  border-top-color: var(--accent-dark);
}

.signal-core {
  bottom: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
}

.card-title {
  font-weight: 800;
  margin: 0 0 12px;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.section-grid,
.link-cards {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.section-grid {
  grid-template-columns: 1.05fr 1.05fr 0.9fr;
}

.link-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 0 48px;
}

.panel,
.link-card {
  padding: 26px;
}

.panel {
  background: rgba(255, 255, 255, 0.7);
}

.link-card {
  display: grid;
  gap: 8px;
  transition: transform 160ms ease, border-color 160ms ease;
  background: rgba(255, 255, 255, 0.76);
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(1, 93, 226, 0.28);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 26px;
  margin-top: 22px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-tagline {
  margin-top: 4px;
  font-size: 0.95rem;
}

.language-main,
.quick-redirect-main {
  min-height: 58vh;
  display: grid;
  place-items: center;
}

.language-hero,
.quick-redirect-card {
  width: min(760px, 100%);
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.language-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  display: grid;
  gap: 8px;
  box-shadow: var(--shadow-soft);
}

.legal-page {
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.legal-page.is-cms-loading > :not(.legal-meta):not(.page-title) {
  display: none !important;
}

.legal-page.is-cms-loading::after {
  content: "";
  display: block;
  margin-top: 24px;
  height: 160px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(1, 93, 226, 0.06), rgba(102, 217, 180, 0.08), rgba(1, 93, 226, 0.06));
  background-size: 200% 100%;
  animation: legal-cms-shimmer 1.4s linear infinite;
}

@keyframes legal-cms-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.legal-page section + section {
  margin-top: 28px;
}

.legal-page ul {
  padding-left: 18px;
}

.cms-legal-body .legal-section + .legal-section {
  margin-top: 28px;
}

.cms-legal-body h2,
.cms-legal-body h3,
.cms-legal-body h4 {
  font-family: var(--serif);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
}

.cms-legal-body h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.cms-legal-body h3,
.cms-legal-body h4 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.cms-legal-body p,
.cms-legal-body li {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}

.cms-legal-body ul,
.cms-legal-body ol {
  padding-left: 20px;
}

.cms-legal-body .info-list {
  margin: 0;
}

.cms-legal-body .info-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 6px 0;
}

.cms-legal-body .info-row dt {
  color: var(--muted);
  font-weight: 700;
}

.cms-legal-body .info-row dd {
  margin: 0;
}

.content-page h2,
.page-title {
  margin-bottom: 14px;
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
    max-width: none;
}

.content-columns {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  margin-top: 20px;
}

/* ── Help page: search + tabs ── */
.help-search-wrap {
  margin: 24px 0 16px;
}

.help-search-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--card-bg, #fff);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.help-search-input:focus {
  border-color: var(--primary);
}

.help-search-input::placeholder {
  color: var(--muted, #999);
}

.help-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--line);
  margin-bottom: 0;
}

.help-tab {
  flex: 1;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted, #999);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-align: center;
}

.help-tab:hover {
  color: var(--text);
}

.help-tab.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.help-tab-content {
  margin-top: 20px;
}

.help-panel {
  display: none;
}

.help-panel.is-active {
  display: block;
}

.help-no-results {
  text-align: center;
  color: var(--muted, #999);
  padding: 40px 20px;
  font-size: 1rem;
}

.search-match {
  animation: search-highlight 0.3s ease;
}

@keyframes search-highlight {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.help-tab-content {
  margin-bottom: 64px;
}
.help-section + .help-section,
.faq-category + .faq-category,
.legal-group + .legal-group {
  margin-top: 24px;
}

.help-section {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.help-section summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.help-section summary::after {
  content: "\25BE";
  font-size: 1rem;
  color: var(--muted);
  transition: transform 200ms ease;
}

.help-section[open] summary::after {
  transform: rotate(180deg);
}

.help-section .help-body {
  margin-top: 12px;
}
.faq-category h3,
.legal-group h4 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.faq-category h3 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

.help-body ul,
.legal-group ul,
.ordered-list {
  padding-left: 20px;
}

.deletion-web-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.deletion-web-cta:hover {
  opacity: 0.85;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-number {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary);
  color: white;
  font-weight: 800;
}

.info-list {
  margin: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 6px 0;
}

.info-row dt {
  color: var(--muted);
  font-weight: 700;
}

.info-row dd {
  margin: 0;
}

.signature {
  font-weight: 700;
  color: var(--primary-dark);
}

/* â”€â”€â”€ Scroll to top button â”€â”€â”€ */
.scroll-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary-dark, #0a3d2a);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.scroll-to-top:hover {
  transform: translateY(-3px);
}
.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 920px) {
  .hero,
  .section-grid,
  .link-cards,
  .content-columns,
  .language-grid {
    grid-template-columns: 1fr;
  }

  .hero-full {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 32px;
    text-align: center;
  }

  .hero-full-text {
    max-width: none;
  }

  .hero-full-text .lede {
    max-width: none;
    margin: 0 auto;
  }

  .hero-full-visual {
    min-height: 360px;
    display: flex;
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
    padding: 32px;
    text-align: center;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

        .pricing-inner,
        .how-inner {
          padding: 32px 20px;
        }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

                                /* Hamburger visible, nav hidden */
                                .hamburger {
                                  display: flex;
                                }
                
                                .nav {
                                  display: none;
                                  position: absolute;
                                  top: calc(100% + 8px);
                                  left: 0;
                                  right: 0;
                                  flex-direction: column;
                                  gap: 8px;
                                  padding: 18px 20px;
                                  background: rgba(255, 252, 246, 0.96);
                                  backdrop-filter: blur(18px);
                                  border: 1px solid var(--line);
                                  border-radius: var(--radius-lg);
                                  box-shadow: var(--shadow);
                                  z-index: 99;
                                }
                
                                .nav.is-open {
                                  display: flex;
                                }
  .topbar {
    position: sticky;
      top: 8px;
    border-radius: 28px;
    flex-wrap: wrap;
    }
    
    .contact-inner {
      grid-template-columns: 1fr;
      padding: 32px;
      gap: 32px;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-shell,
  .legal-shell {
    width: min(100% - 20px, 1120px);
  }

  .hero-copy,
  .hero-card,
  .panel,
  .link-card,
                                .legal-page {
    padding: 22px;
    border-radius: 22px;
  }

  .topbar {
    padding: 16px;
  }

  .nav {
    gap: 12px;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .link-cards {
    grid-template-columns: 1fr;
  }

  .hero-full-visual {
    min-height: 340px;
    overflow: visible;
  }

                                .trust-universe {
    width: 280px;
    height: 280px;
  }

                                .tu-device {
                                  left: 44.4%;
                                  top: 8.4%;
                                  width: 29.3%;
                                }
                
                                .tu-device-screen {
                                  height: 560px;
                                }

                                .tu-hand-wrap {
                                  width: 1010px;
                                  margin-left: 0;
                                  transform: translate(-50%, -50%) scale(0.54);
                                  transform-origin: center center;
                                }

                                .tu-fly-msg {
                                  font-size: 0.7rem;
                                  padding: 8px 12px;
                                  max-width: 160px;
                                }
                
                .tu-bubble {
                  font-size: 0.5rem;
                  padding: 3px 8px;
                  top: -26px;
                }
                
                .tu-orbit-1 {
                  animation-name: tu-orbit1-sm;
                }
                
                .tu-orbit-2 {
                  animation-name: tu-orbit2-sm;
                }
                                .tu-orbit-3 {
                                  animation-name: tu-orbit3-sm;
                                }
                
                                .tu-orbit-4 {
                                  animation-name: tu-orbit4-sm;
                                }
                                .tu-person-status {
    width: 10px;
    height: 10px;
  }

                                .contact-inner {
                                  padding: 22px;
                                }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
}

/* Small-screen orbit keyframes (varied radii) */
@keyframes tu-orbit1-sm {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(108px) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(108px) rotate(-360deg);
  }
}

@keyframes tu-orbit2-sm {
  0% {
    transform: translate(-50%, -50%) rotate(45deg) translateX(126px) rotate(-45deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(405deg) translateX(126px) rotate(-405deg);
  }
}

@keyframes tu-orbit3-sm {
  0% {
    transform: translate(-50%, -50%) rotate(160deg) translateX(102px) rotate(-160deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(520deg) translateX(102px) rotate(-520deg);
  }
}

@keyframes tu-orbit4-sm {
  0% {
    transform: translate(-50%, -50%) rotate(250deg) translateX(120px) rotate(-250deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(610deg) translateX(120px) rotate(-610deg);
  }
}

/* ─── Accessibility: Focus visible ─── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1, 93, 226, 0.18);
}

/* ─── Accessibility: Skip link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ─── Accessibility: Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
