:root {
  --background: #f7fbff;
  --foreground: #132238;
  --muted: #eaf2f8;
  --muted-foreground: #607086;
  --card: #ffffff;
  --border: #d9e5ef;
  --primary: #14213d;
  --primary-glow: #00a8a8;
  --primary-foreground: #ffffff;
  --accent: #ffd166;
  --brand-navy: #233d8f;
  --shadow-elegant: 0 24px 60px rgba(20, 33, 61, 0.14);
  --shadow-glow: 0 16px 34px rgba(0, 168, 168, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  background:
    radial-gradient(circle at top left, rgba(0, 168, 168, 0.12), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, var(--background) 42%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
}

ul,
dl,
dd {
  margin: 0;
}

ul {
  padding-left: 0;
  list-style: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(217, 229, 239, 0.9);
}

nav a:hover,
footer a:hover,
.hover\:text-primary-glow:hover {
  color: var(--primary-glow);
}

.active {
  color: var(--primary-glow);
}

.site-menu {
  align-items: center;
  gap: 1.8rem;
}

.site-menu a,
.menu-dropdown > a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  color: var(--foreground);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-menu a:hover,
.menu-dropdown:hover > a,
.menu-dropdown:focus-within > a,
.site-menu a.active,
.menu-dropdown > a.active {
  color: var(--primary-glow);
}

.menu-dropdown {
  position: relative;
}

.menu-dropdown > a::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.menu-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  z-index: 60;
  min-width: 13.5rem;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-elegant);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.menu-dropdown:hover .menu-dropdown-panel,
.menu-dropdown:focus-within .menu-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-dropdown-panel a {
  display: flex;
  min-height: auto;
  padding: 0.7rem 0.85rem;
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.menu-dropdown-panel a:hover,
.menu-dropdown-panel a.active {
  color: var(--primary);
  background: var(--muted);
}

.mobile-menu {
  position: relative;
  display: block;
}

.mobile-menu summary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--primary);
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu[open] summary {
  color: var(--primary-foreground);
  background: var(--primary);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 70;
  display: grid;
  min-width: 15rem;
  padding: 0.7rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  box-shadow: var(--shadow-elegant);
}

.mobile-menu-panel a,
.mobile-menu-label {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 800;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a.active {
  color: var(--primary);
  background: var(--muted);
}

.mobile-menu-label {
  color: var(--muted-foreground);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.grid { display: grid; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { inset: 0; }
.\-top-32 { top: -8rem; }
.\-left-24 { left: -6rem; }
.\-bottom-32 { bottom: -8rem; }
.\-right-24 { right: -6rem; }
.top-1\/3 { top: 33.333%; }
.left-1\/2 { left: 50%; }
.bottom-6 { bottom: 1.5rem; }
.\-translate-x-1\/2 { transform: translateX(-50%); }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }

.w-full { width: 100%; }
.max-w-7xl { max-width: 80rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-lg { max-width: 32rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.h-1 { height: 0.25rem; }
.w-1 { width: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3\.5 { height: 0.875rem; }
.w-3\.5 { width: 0.875rem; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }
.h-6 { height: 1.5rem; }
.w-6 { width: 1.5rem; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.h-9 { height: 2.25rem; }
.w-9 { width: 2.25rem; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.h-12 { height: 3rem; }
.w-12 { width: 3rem; }
.h-24 { height: 6rem; }
.w-24 { width: 6rem; }
.h-28 { height: 7rem; }
.w-28 { width: 7rem; }
.h-72 { height: 18rem; }
.w-72 { width: 18rem; }
.h-96 { height: 24rem; }
.w-96 { width: 24rem; }
.h-\[28rem\] { height: 28rem; }
.w-\[28rem\] { width: 28rem; }

.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-10 { gap: 2.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

.p-1 { padding: 0.25rem; }
.p-3 { padding: 0.75rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pb-20 { padding-bottom: 5rem; }
.pt-2 { padding-top: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-24 { margin-top: 6rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }

.bg-background { background: var(--background); }
.bg-muted { background: var(--muted); }
.bg-muted\/60 { background: rgba(234, 242, 248, 0.72); }
.bg-card { background: var(--card); }
.bg-primary { background: var(--primary); }
.bg-primary-glow { background: var(--primary-glow); }
.bg-white { background: #ffffff; }
.bg-white\/10 { background: rgba(255, 255, 255, 0.1); }
.bg-white\/15 { background: rgba(255, 255, 255, 0.15); }
.bg-white\/20 { background: rgba(255, 255, 255, 0.2); }
.bg-primary-foreground\/10 { background: rgba(255, 255, 255, 0.1); }
.bg-gradient-brand {
  background: linear-gradient(135deg, var(--primary) 0%, var(--brand-navy) 48%, var(--primary-glow) 100%);
}
.bg-gradient-hero {
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 168, 168, 0.42), transparent 28rem),
    radial-gradient(circle at 85% 80%, rgba(255, 209, 102, 0.26), transparent 28rem),
    linear-gradient(135deg, #08152b 0%, #14213d 48%, #0f6f7b 100%);
}
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.text-transparent { color: transparent; }
.text-primary { color: var(--primary); }
.text-primary-glow { color: var(--primary-glow); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-primary-foreground\/60 { color: rgba(255, 255, 255, 0.6); }
.text-primary-foreground\/70 { color: rgba(255, 255, 255, 0.7); }
.text-primary-foreground\/80 { color: rgba(255, 255, 255, 0.8); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white { color: #ffffff; }
.text-gradient {
  color: transparent;
  background: linear-gradient(90deg, var(--primary-glow), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.text-center { text-align: center; }
.text-\[10px\] { font-size: 10px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.35rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-3xl { font-size: clamp(1.875rem, 4vw, 2.35rem); line-height: 1.12; }
.text-4xl { font-size: clamp(2.25rem, 6vw, 3.2rem); line-height: 1.05; }
.text-5xl { font-size: clamp(3rem, 7vw, 4rem); line-height: 1; }
.text-\[12rem\] { font-size: clamp(5.5rem, 15vw, 12rem); }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: 0; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.05; }
.leading-relaxed { line-height: 1.75; }

.rounded { border-radius: 0.35rem; }
.rounded-md { border-radius: 0.45rem; }
.rounded-lg { border-radius: 0.6rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 999px; }
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-border { border-color: var(--border); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/25 { border-color: rgba(255, 255, 255, 0.25); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-white\/40 { border-color: rgba(255, 255, 255, 0.4); }
.border-white\/60 { border-color: rgba(255, 255, 255, 0.6); }
.border-primary-foreground\/10 { border-color: rgba(255, 255, 255, 0.1); }

.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.drop-shadow-lg { filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22)); }
.drop-shadow-2xl { filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.24)); }
.backdrop-blur { backdrop-filter: blur(16px); }
.blur-3xl { filter: blur(64px); }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-80 { opacity: 0.8; }
.whitespace-nowrap { white-space: nowrap; }
.scroll-mt-20 { scroll-margin-top: 5rem; }

.transition-all { transition: all 220ms ease; }
.transition-colors { transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease; }
.transition-transform { transition: transform 180ms ease; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:bg-white\/25:hover { background: rgba(255, 255, 255, 0.25); }
.hover\:bg-primary\/90:hover { background: rgba(20, 33, 61, 0.9); }
.hover\:bg-primary-glow:hover { background: var(--primary-glow); }
.hover\:border-primary-glow:hover { border-color: var(--primary-glow); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:scale-125:hover { transform: scale(1.18); }
.hover\:rotate-12:hover { transform: rotate(12deg); }
.hover-scale:hover { transform: translateY(-2px) scale(1.025); }
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elegant);
}

.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:shadow-glow { box-shadow: var(--shadow-glow); }
.group:hover .group-hover\:rotate-6 { transform: rotate(6deg); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

.lucide {
  flex-shrink: 0;
}

main section:nth-child(2) .bg-card,
main section:nth-child(3) .bg-card,
aside.bg-card {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(20, 33, 61, 0.08);
}

footer {
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 168, 168, 0.22), transparent 22rem),
    linear-gradient(135deg, #08152b 0%, var(--primary) 58%, #0b3647 100%);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 209, 102, 0);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 209, 102, 0.28);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(1.2rem);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 700ms ease both;
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2.8s ease-in-out infinite;
}

.animate-scroll-dot {
  animation: scroll-dot 1.5s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 1.2s ease-in-out infinite;
}

.page-shell {
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
  padding: 4.5rem 0;
}

.account-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.account-copy {
  padding: 2rem;
  color: var(--primary-foreground);
  background: linear-gradient(135deg, var(--primary), var(--brand-navy) 55%, var(--primary-glow));
  border-radius: 0.8rem;
}

.account-copy h1,
.info-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--primary-glow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.account-copy .eyebrow {
  color: var(--accent);
}

.account-form {
  display: grid;
  gap: 1.4rem;
}

.step-indicator {
  display: flex;
  gap: 0.6rem;
}

.step-indicator span {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--muted-foreground);
  background: var(--muted);
  border-radius: 999px;
  font-weight: 900;
}

.step-indicator span.active {
  color: var(--primary-foreground);
  background: var(--primary-glow);
}

.form-step {
  display: none;
}

.form-step.active {
  display: grid;
  gap: 1rem;
}

.form-step h2,
.info-grid h2 {
  margin-bottom: 0.2rem;
  color: var(--primary);
}

.account-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 800;
}

.account-form input[type="text"],
.account-form input[type="email"] {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--foreground);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.55rem;
  font: inherit;
}

.account-form input:focus {
  outline: 3px solid rgba(0, 168, 168, 0.18);
  border-color: var(--primary-glow);
}

.verify-options {
  display: flex;
  gap: 1rem;
}

.verify-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 7rem;
  padding: 0.85rem 1rem;
  background: var(--muted);
  border-radius: 0.55rem;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted-foreground);
}

.form-button {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  min-width: 10rem;
  padding: 0.95rem 1.3rem;
  color: var(--primary-foreground);
  background: var(--primary);
  border: 0;
  border-radius: 0.55rem;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.form-button:hover {
  background: rgba(20, 33, 61, 0.9);
}

.face-box {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 2rem;
  color: var(--muted-foreground);
  background: var(--muted);
  border: 1px dashed var(--primary-glow);
  border-radius: 0.8rem;
  text-align: center;
}

.face-circle {
  width: 9rem;
  height: 9rem;
  border: 4px solid var(--primary-glow);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1rem rgba(0, 168, 168, 0.08);
}

.success-dropdown {
  position: fixed;
  top: 5.5rem;
  left: 50%;
  z-index: 80;
  padding: 1rem 1.4rem;
  color: var(--primary-foreground);
  background: var(--primary-glow);
  border-radius: 0.6rem;
  box-shadow: var(--shadow-elegant);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -1rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.success-dropdown.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.info-hero {
  max-width: 54rem;
  margin-bottom: 2rem;
}

.info-hero p,
.info-grid p {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.75;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.info-grid article {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  box-shadow: 0 14px 40px rgba(20, 33, 61, 0.08);
}

.profile-square-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.profile-square-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 18rem;
  aspect-ratio: 1 / 1;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  box-shadow: 0 18px 46px rgba(20, 33, 61, 0.1);
}

.profile-square-card h3 {
  margin-bottom: 0.9rem;
  color: var(--primary);
  font-size: 1.55rem;
  font-weight: 900;
}

.profile-square-card p {
  margin-bottom: 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
  padding: 1rem 0;
}

.simple-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--primary);
}

.simple-brand span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary-foreground);
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  border-radius: 0.45rem;
  font-weight: 900;
}

.simple-site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.simple-site-nav a,
.menu-list-grid a {
  padding: 0.65rem 0.85rem;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.simple-site-nav a:hover,
.menu-list-grid a:hover {
  color: var(--primary-foreground);
  background: var(--primary);
}

.menu-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.menu-list-grid a {
  display: flex;
  align-items: center;
  min-height: 7rem;
  padding: 1.2rem;
  font-size: 1rem;
}

.support-contact-section {
  margin-top: 3rem;
}

.support-section-heading {
  margin-bottom: 1.5rem;
}

.support-section-heading h2 {
  margin-bottom: 0;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.support-card {
  min-height: 31rem;
  padding: 2rem;
  color: #09005c;
  background: #e8fbf6;
  border-radius: 1.45rem;
  box-shadow: 0 18px 48px rgba(20, 33, 61, 0.08);
}

.support-card h3 {
  margin: 2.4rem 0 2rem;
  color: #09005c;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
}

.support-card p {
  max-width: 17rem;
  margin-top: 1.8rem;
  color: #09005c;
  font-weight: 800;
  line-height: 1.55;
}

.support-visual,
.social-bubbles {
  width: 5.3rem;
  height: 5.3rem;
  margin-left: 0.6rem;
}

.support-visual {
  display: grid;
  place-items: center;
  color: var(--primary-foreground);
  background: var(--primary-glow);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 168, 168, 0.22);
  font-size: 1.5rem;
  font-weight: 900;
}

.support-visual-person {
  background: linear-gradient(135deg, #0abf8b, #00a8a8);
}

.support-visual-phone {
  background: linear-gradient(135deg, #0fd18a, #00a8a8);
}

.support-link-list {
  display: grid;
  gap: 1.3rem;
}

.support-link-list a {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  gap: 0.75rem;
  color: #09005c;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.35;
}

.support-link-list a:hover {
  color: var(--primary-glow);
}

.support-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: #ffffff;
  background: var(--primary-glow);
  border-radius: 0.5rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.social-bubbles {
  position: relative;
}

.social-bubbles span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(20, 33, 61, 0.16);
}

.instagram-bubble {
  top: 0;
  left: 1rem;
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af);
}

.facebook-bubble {
  right: 0.2rem;
  bottom: 0.3rem;
  background: #1877f2;
}

.whatsapp-bubble {
  left: 0;
  bottom: 0;
  background: #25d366;
}

@media (min-width: 640px) {
  .sm\:flex { display: flex; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .mobile-menu { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-14 { padding: 3.5rem; }
  .md\:p-16 { padding: 4rem; }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:text-4xl { font-size: clamp(2.35rem, 4vw, 3rem); line-height: 1.08; }
  .md\:text-5xl { font-size: clamp(3rem, 5vw, 4.25rem); line-height: 1; }
  .md\:text-6xl { font-size: clamp(3.8rem, 7vw, 5.3rem); line-height: 0.98; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:grid-cols-\[0\.85fr_1\.15fr\] { grid-template-columns: 0.85fr 1.15fr; }
  .lg\:grid-cols-\[0\.9fr_1\.1fr\] { grid-template-columns: 0.9fr 1.1fr; }
}

@media (max-width: 767px) {
  .account-panel,
  .info-grid,
  .profile-square-grid,
  .menu-list-grid,
  .support-card-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: auto;
  }

  .simple-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .simple-site-nav {
    justify-content: flex-start;
  }

  .profile-square-card {
    aspect-ratio: auto;
    min-height: 16rem;
  }

  .account-panel,
  .account-copy {
    padding: 1.25rem;
  }

  .form-button {
    width: 100%;
  }

  header .justify-between {
    gap: 1rem;
  }

  .py-20 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .py-24 {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .p-10 {
    padding: 1.5rem;
  }

  .text-\[12rem\] {
    font-size: 5rem;
  }

  .rounded-2xl {
    border-radius: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
