:root {
  --bg: #06101f;
  --bg-deep: #030914;
  --bg-alt: #0a1730;
  --panel: rgba(10, 21, 41, 0.78);
  --panel-strong: rgba(13, 27, 52, 0.94);
  --panel-soft: rgba(16, 31, 58, 0.72);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --text: #ebf6ff;
  --muted: #9bb2cd;
  --muted-strong: #c7d7ea;
  --primary: #6fdcff;
  --primary-strong: #38a8ff;
  --primary-soft: #92e8ff;
  --accent: #85ffd9;
  --accent-soft: rgba(133, 255, 217, 0.2);
  --border: rgba(122, 216, 255, 0.14);
  --border-strong: rgba(122, 216, 255, 0.28);
  --shadow-sm: 0 18px 38px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 28px 70px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 42px 110px rgba(0, 0, 0, 0.38);
  --glow: 0 0 0 1px rgba(122, 216, 255, 0.08), 0 0 35px rgba(56, 168, 255, 0.12);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-xl: 42px;
  --container: 1180px;
}

::selection {
  color: #05101f;
  background: rgba(133, 255, 217, 0.92);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Cairo", sans-serif;
  line-height: 1.85;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(56, 168, 255, 0.24), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(133, 255, 217, 0.12), transparent 16%),
    radial-gradient(circle at 80% 78%, rgba(111, 220, 255, 0.14), transparent 18%),
    linear-gradient(180deg, #071120 0%, #050b16 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(123, 215, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 215, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 86%);
}

body::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 5px
    );
  opacity: 0.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.25;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 2.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
  font-weight: 800;
}

p,
li {
  font-size: 1rem;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  top: 12%;
  left: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 168, 255, 0.2), transparent 68%);
  filter: blur(26px);
  animation: orb-drift 18s ease-in-out infinite;
}

.site-shell::after {
  right: -120px;
  bottom: 18%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(133, 255, 217, 0.12), transparent 70%);
  filter: blur(30px);
  animation: orb-drift 21s ease-in-out infinite reverse;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: 0.9rem;
  background: linear-gradient(180deg, rgba(6, 13, 26, 0.94), rgba(6, 13, 26, 0));
  transition: padding-top 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 0.4rem;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -16px;
  width: min(620px, 72vw);
  height: 36px;
  transform: translateX(50%);
  background: radial-gradient(circle, rgba(56, 168, 255, 0.16), transparent 72%);
  pointer-events: none;
  filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
  padding: 0.9rem 1rem 0.9rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(12, 24, 46, 0.9), rgba(8, 17, 33, 0.82));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(111, 220, 255, 0.12), transparent 24%, transparent 76%, rgba(133, 255, 217, 0.08));
  pointer-events: none;
}

.site-header.is-scrolled .header-inner {
  min-height: 76px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(111, 220, 255, 0.14);
}

.brand small {
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(111, 220, 255, 0.16), rgba(17, 39, 73, 0.96));
  border: 1px solid rgba(122, 216, 255, 0.22);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(56, 168, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark-image {
  overflow: hidden;
  padding: 0;
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(122, 216, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-nav a {
  position: relative;
  padding: 0.82rem 1.05rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.site-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.site-nav a.active {
  color: #06101f;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow:
    0 16px 30px rgba(56, 168, 255, 0.2),
    0 0 22px rgba(133, 255, 217, 0.12);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  inset: auto 18px -7px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 220, 255, 0.34), transparent 72%);
}

.lang-switcher {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 46px;
  padding: 0.65rem 0.95rem;
  border-radius: 16px;
  color: var(--primary-soft);
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(111, 220, 255, 0.06);
  border: 1px solid rgba(111, 220, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.lang-switcher:hover {
  color: #06101f;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 16px 26px rgba(56, 168, 255, 0.16);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(122, 216, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--glow);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--primary-soft);
  transition: 0.25s ease;
}

.hero-section,
.page-hero {
  padding: 1.15rem 0 0;
}

.hero-grid,
.page-hero .container {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(8, 18, 36, 0.94), rgba(10, 23, 48, 0.94) 48%, rgba(15, 34, 67, 0.98) 100%);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  background-size: 160% 160%;
  animation: gradient-shift 18s ease infinite;
}

.hero-grid::before,
.hero-grid::after,
.page-hero .container::before,
.page-hero .container::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-grid::before,
.page-hero .container::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 6px
    );
  opacity: 0.44;
}

.hero-grid::after,
.page-hero .container::after {
  top: -100px;
  left: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 168, 255, 0.18), transparent 68%);
  filter: blur(18px);
  animation: orb-drift 16s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
}

.hero-grid > *,
.page-hero .container > * {
  position: relative;
  z-index: 1;
}

.hero-copy,
.page-hero .container {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.5rem 0.95rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  color: var(--primary-soft);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(111, 220, 255, 0.08);
  border: 1px solid rgba(111, 220, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.eyebrow-light {
  color: var(--primary);
  background: rgba(111, 220, 255, 0.08);
}

.hero-text,
.page-hero p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.hero-copy h1,
.page-hero h1 {
  text-shadow: 0 0 26px rgba(56, 168, 255, 0.18);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.signal-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: #dff9ff;
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(111, 220, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.signal-dot {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(133, 255, 217, 0.08), 0 0 18px rgba(133, 255, 217, 0.32);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.button::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -38%;
  width: 34%;
  height: 320%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(22deg);
  transition: left 0.75s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  left: 122%;
}

.button-primary {
  color: #04101d;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow:
    0 18px 30px rgba(56, 168, 255, 0.18),
    0 0 28px rgba(133, 255, 217, 0.12);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(111, 220, 255, 0.16);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button-tertiary {
  color: var(--text);
  background: rgba(10, 20, 38, 0.8);
  border-color: rgba(111, 220, 255, 0.12);
}

.button-full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.55rem;
}

.hero-metric {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(111, 220, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-metric strong {
  display: block;
  color: #fff;
  font-size: 1.38rem;
  font-weight: 800;
}

.hero-metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 23, 44, 0.96), rgba(7, 15, 31, 0.94));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(111, 220, 255, 0.12), transparent 36%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.card:hover::before {
  opacity: 1;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(130deg, rgba(111, 220, 255, 0.08), transparent 18%, transparent 80%, rgba(133, 255, 217, 0.05));
  pointer-events: none;
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.hero-card {
  padding: 1.45rem;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15, 30, 58, 0.94), rgba(8, 18, 36, 0.94));
  border-color: rgba(111, 220, 255, 0.18);
  box-shadow:
    var(--shadow-md),
    0 0 40px rgba(56, 168, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-card::before {
  opacity: 1;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(111, 220, 255, 0.16), transparent 34%);
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  color: #e6fbff;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(111, 220, 255, 0.08);
  border: 1px solid rgba(111, 220, 255, 0.14);
}

.status-pill.subtle {
  background: rgba(255, 255, 255, 0.05);
}

.status-pill.dark {
  background: linear-gradient(135deg, rgba(111, 220, 255, 0.15), rgba(10, 23, 48, 0.8));
}

.stat-card {
  padding: 1.2rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(111, 220, 255, 0.14);
}

.stat-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary-soft);
  font-size: 0.92rem;
}

.stat-card strong {
  font-size: 1.16rem;
  line-height: 1.6;
}

.check-list,
.summary-list,
.legal-content ul,
.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.summary-list li,
.legal-content ul li,
.steps-list li {
  position: relative;
  padding-right: 1.75rem;
  margin-bottom: 0.95rem;
}

.check-list li::before,
.summary-list li::before,
.legal-content ul li::before {
  content: "";
  position: absolute;
  top: 0.78rem;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 7px rgba(111, 220, 255, 0.08);
}

.hero-card .check-list li {
  color: var(--muted-strong);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(111, 220, 255, 0.12);
  color: var(--muted);
}

.hero-note a {
  color: #fff;
  font-weight: 700;
}

.hero-note.secondary {
  margin-top: 0.75rem;
  padding-top: 0;
  border-top: 0;
}

.hero-telemetry {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(111, 220, 255, 0.12);
}

.telemetry-row {
  display: grid;
  gap: 0.45rem;
}

.telemetry-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.telemetry-meta strong {
  color: #fff;
  font-size: 0.95rem;
}

.telemetry-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(111, 220, 255, 0.1);
}

.telemetry-bar span {
  display: block;
  width: var(--level, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--primary), #b5d5ff);
  box-shadow: 0 0 18px rgba(111, 220, 255, 0.24);
}

.section {
  position: relative;
  padding: 4.8rem 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.012));
  pointer-events: none;
  z-index: -1;
}

.section-soft::before {
  background:
    radial-gradient(circle at 12% 30%, rgba(56, 168, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}

.section-alt::before {
  background:
    radial-gradient(circle at 86% 22%, rgba(133, 255, 217, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.02));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.7rem;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  box-shadow: 0 0 20px rgba(111, 220, 255, 0.22);
}

.section-heading p {
  color: var(--muted);
}

.feature-grid,
.quick-links-grid,
.info-grid,
.support-layout,
.delete-layout,
.footer-grid {
  display: grid;
  gap: 1.3rem;
}

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

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

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

.feature-card,
.quick-link-card,
.info-card,
.contact-card,
.form-card,
.support-note,
.legal-summary,
.legal-content,
.process-card,
.faq-item,
.showcase-panel,
.showcase-stat {
  padding: 1.55rem;
}

.feature-card,
.quick-link-card,
.info-card,
.contact-card,
.form-card,
.support-note,
.process-card,
.faq-item,
.showcase-panel {
  transform: translateY(var(--hover-offset, 0px));
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.feature-card:hover,
.quick-link-card:hover,
.info-card:hover,
.contact-card:hover,
.form-card:hover,
.support-note:hover,
.process-card:hover,
.faq-item:hover,
.showcase-panel:hover {
  --hover-offset: -4px;
  border-color: var(--border-strong);
  box-shadow:
    0 32px 74px rgba(0, 0, 0, 0.32),
    0 0 36px rgba(56, 168, 255, 0.08);
}

.feature-card {
  padding-top: 5.8rem;
}

.feature-code {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  color: var(--primary-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgba(111, 220, 255, 0.08);
  border: 1px solid rgba(111, 220, 255, 0.12);
}

.feature-card:hover .feature-code {
  background: rgba(111, 220, 255, 0.12);
}

.feature-icon {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(111, 220, 255, 0.14), rgba(16, 31, 58, 0.96));
  border: 1px solid rgba(111, 220, 255, 0.18);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(56, 168, 255, 0.08);
  animation: icon-float 6.5s ease-in-out infinite;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary-soft);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(111, 220, 255, 0.12));
}

.feature-card:hover .feature-icon {
  animation: none;
  transform: scale(1.05) rotate(-4deg);
}

.feature-card p,
.quick-link-card p,
.info-card p,
.contact-card p,
.support-note p,
.legal-content p,
.legal-content li,
.process-card p,
.faq-item p,
.showcase-copy p,
.showcase-stat small {
  color: var(--muted);
}

.quick-link-badge,
.process-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 18px;
  color: #08101d;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow:
    0 16px 24px rgba(56, 168, 255, 0.16),
    0 0 20px rgba(133, 255, 217, 0.1);
}

.showcase-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 1.3rem;
}

.showcase-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  align-items: center;
}

.showcase-copy p {
  color: var(--muted);
}

.showcase-list {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.showcase-list li {
  position: relative;
  padding-right: 1.75rem;
  margin-bottom: 0.95rem;
  color: var(--muted-strong);
}

.showcase-list li::before {
  content: "";
  position: absolute;
  top: 0.82rem;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 7px rgba(111, 220, 255, 0.08);
}

.showcase-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.showcase-dot {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(133, 255, 217, 0.08), 0 0 22px rgba(133, 255, 217, 0.16);
}

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

.showcase-stat {
  padding: 1.15rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(111, 220, 255, 0.1);
}

.showcase-stat span,
.showcase-stat small {
  display: block;
}

.showcase-stat span {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.showcase-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.45;
}

.showcase-stat.wide {
  grid-column: 1 / -1;
}

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

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-inline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  color: #e9fbff;
  font-weight: 800;
  background: rgba(111, 220, 255, 0.08);
  border: 1px solid rgba(111, 220, 255, 0.12);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.contact-inline a:hover {
  transform: translateY(-2px);
  background: rgba(111, 220, 255, 0.12);
  box-shadow: 0 16px 28px rgba(56, 168, 255, 0.1);
}

.page-main {
  padding-bottom: 2rem;
}

.page-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: #dff9ff;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(111, 220, 255, 0.08);
  border: 1px solid rgba(111, 220, 255, 0.15);
  transition: transform 0.22s ease, background 0.22s ease;
}

.page-hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(133, 255, 217, 0.08);
}

.page-hero-tag:hover {
  transform: translateY(-2px);
  background: rgba(111, 220, 255, 0.12);
}

.legal-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 1.3rem;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 112px;
}

.legal-summary h2 {
  color: #fff;
}

.legal-content-single {
  max-width: 100%;
}

.legal-content strong,
.legal-content a {
  color: var(--primary-soft);
}

.legal-section {
  position: relative;
  padding: 1.35rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(17, 31, 58, 0.82), rgba(10, 21, 42, 0.86));
  border: 1px solid rgba(111, 220, 255, 0.1);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.legal-section h2 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.legal-section h2::before {
  content: "";
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 8px rgba(111, 220, 255, 0.08);
}

.legal-section + .legal-section {
  margin-top: 1rem;
  padding-top: 1.35rem;
}

.summary-list li {
  color: var(--muted-strong);
}

.steps-list {
  counter-reset: steps;
}

.steps-list li {
  padding-right: 3.8rem;
}

.steps-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 0.08rem;
  right: 0;
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06101f;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 16px 28px rgba(56, 168, 255, 0.16);
}

.support-layout {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

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

.contact-list div {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(111, 220, 255, 0.1);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-list div:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 220, 255, 0.18);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.contact-list span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-list a,
.contact-list strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.support-form {
  display: grid;
  gap: 0.8rem;
}

.support-form label {
  color: var(--primary-soft);
  font-weight: 800;
}

.support-form label::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-inline-start: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  vertical-align: middle;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(111, 220, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: rgba(155, 178, 205, 0.82);
}

.support-form input:hover,
.support-form select:hover,
.support-form textarea:hover {
  border-color: rgba(111, 220, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(133, 255, 217, 0.4);
  box-shadow: 0 0 0 5px rgba(111, 220, 255, 0.08), 0 0 24px rgba(56, 168, 255, 0.08);
  transform: translateY(-1px);
}

.delete-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

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

.faq-item summary {
  position: relative;
  padding-left: 2rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  transition: color 0.22s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-soft);
  transform: translateY(-50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item:hover summary {
  color: var(--primary-soft);
}

.faq-item[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0.3);
}

.faq-item p {
  margin: 1rem 0 0;
}

.support-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(111, 220, 255, 0.14);
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 17, 33, 0.98), rgba(10, 23, 48, 0.96) 48%, rgba(16, 36, 68, 0.98));
  box-shadow:
    var(--shadow-lg),
    0 0 50px rgba(56, 168, 255, 0.08);
  background-size: 160% 160%;
  animation: gradient-shift 18s ease infinite;
}

.support-cta h2,
.support-cta p {
  color: #fff;
}

.support-cta p {
  margin-bottom: 0;
  color: var(--muted-strong);
}

.support-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

[dir="ltr"] .check-list li,
[dir="ltr"] .summary-list li,
[dir="ltr"] .legal-content ul li,
[dir="ltr"] .showcase-list li {
  padding-right: 0;
  padding-left: 1.75rem;
}

[dir="ltr"] .check-list li::before,
[dir="ltr"] .summary-list li::before,
[dir="ltr"] .legal-content ul li::before,
[dir="ltr"] .showcase-list li::before {
  right: auto;
  left: 0;
}

[dir="ltr"] .steps-list li {
  padding-right: 0;
  padding-left: 3.8rem;
}

[dir="ltr"] .steps-list li::before {
  right: auto;
  left: 0;
}

[dir="ltr"] .section-heading h2::after {
  right: auto;
  left: 0;
}

[dir="ltr"] .back-to-top {
  left: auto;
  right: 1rem;
}

.site-footer {
  position: relative;
  margin-top: 2rem;
  padding-top: 1rem;
  color: var(--muted-strong);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 20%, rgba(56, 168, 255, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(5, 10, 20, 0.98), rgba(8, 18, 36, 0.98) 50%, rgba(10, 24, 46, 0.98));
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 3.4rem 0 2rem;
}

.site-footer h3 {
  margin-bottom: 0.7rem;
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(219, 234, 251, 0.82);
}

.footer-bottom {
  border-top: 1px solid rgba(111, 220, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  padding: 1rem 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  transform-origin: right center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--primary), #c8e3ff);
  z-index: 130;
  box-shadow: 0 0 28px rgba(111, 220, 255, 0.25);
}

.back-to-top {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111, 220, 255, 0.16);
  border-radius: 20px;
  color: #04101d;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow:
    0 20px 34px rgba(56, 168, 255, 0.18),
    0 0 24px rgba(133, 255, 217, 0.1);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  z-index: 70;
}

.back-to-top::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(111, 220, 255, 0.24);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow:
    0 24px 42px rgba(56, 168, 255, 0.22),
    0 0 28px rgba(133, 255, 217, 0.12);
}

.back-to-top:hover::after {
  opacity: 1;
  transform: scale(1);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tilt-surface {
  transform:
    perspective(1100px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(calc(var(--lift, 0px) + var(--hover-offset, 0px)));
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, 14px, 0) scale(1.06);
  }
}

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

  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .feature-grid,
  .quick-links-grid,
  .showcase-grid,
  .process-grid,
  .faq-grid,
  .info-grid,
  .support-layout,
  .delete-layout,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showcase-stats,
  .support-cta {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }
}

@media (max-width: 960px) {
  .site-header {
    padding-top: 0.7rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    left: 0;
    display: none;
    padding: 0.8rem;
    border-radius: 24px;
    background: rgba(8, 17, 33, 0.98);
    box-shadow: var(--shadow-md);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    border-radius: 16px;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 1.1rem));
  }

  .header-inner {
    min-height: 78px;
    padding-inline: 0.8rem;
  }

  .brand strong {
    font-size: 1.14rem;
  }

  .brand small {
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .hero-grid,
  .page-hero .container {
    padding: 2.2rem 1.2rem;
    border-radius: 28px;
  }

  .hero-metrics,
  .contact-list,
  .showcase-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.9rem 0;
  }

  .button,
  .hero-actions .button,
  .quick-link-card .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  .hero-text,
  .page-hero p,
  p,
  li {
    font-size: 0.96rem;
  }

  .feature-card,
  .quick-link-card,
  .info-card,
  .process-card,
  .faq-item,
  .contact-card,
  .form-card,
  .support-note,
  .legal-summary,
  .legal-content,
  .showcase-panel {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .feature-card {
    padding-top: 5.3rem;
  }

  .feature-icon {
    top: 1.1rem;
    right: 1.1rem;
    width: 60px;
    height: 60px;
  }

  .feature-code {
    top: 1.1rem;
    left: 1.1rem;
  }

  .page-hero-tags {
    gap: 0.55rem;
  }

  .page-hero-tag,
  .contact-inline a {
    width: 100%;
    justify-content: center;
  }

  .support-cta {
    padding: 1.4rem;
    border-radius: 26px;
  }

  .support-cta-actions,
  .support-cta .button {
    width: 100%;
  }

  .back-to-top {
    width: 52px;
    height: 52px;
    left: 0.8rem;
    bottom: 0.8rem;
  }

  [dir="ltr"] .back-to-top {
    left: auto;
    right: 0.8rem;
  }
}
