:root {
  --ink: #0f0f1a;
  --ink-soft: #3a3a5c;
  --paper: #f5f4ff;
  --card: #ffffff;
  --line: #ddd8f5;
  --accent: #7a3cff;
  --accent-deep: #5a22e0;
  --teal: #2a7fff;
  --shadow: 0 14px 40px rgba(122, 60, 255, 0.12);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 0% 0%, #ede6ff 0%, #f5f4ff 40%, #f0eeff 100%);
  line-height: 1.65;
  min-height: 100vh;
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(122, 60, 255, 0.14), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(42, 127, 255, 0.16), transparent 36%),
    linear-gradient(140deg, transparent 40%, rgba(15, 15, 26, 0.04) 100%);
  z-index: -1;
}

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

/* ——— Header ——— */

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.6rem 1.4rem;
  position: sticky;
  top: 0.75rem;
  z-index: 100;
  background: rgba(250, 248, 255, 0.92);
  border: 1px solid rgba(221, 216, 245, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(122, 60, 255, 0.08);
  margin-top: 0.75rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 0.55rem;
}

.brand-logo {
  height: clamp(36px, 6vw, 52px);
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-name {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand-name span { color: var(--accent); }

/* ——— Nav ——— */

nav { display: flex; gap: 0.45rem; flex-wrap: wrap; }

a { color: var(--ink); }

nav a {
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

nav a:hover, nav a:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

nav a[aria-current="page"] {
  background: rgba(122, 60, 255, 0.1);
  border-color: rgba(122, 60, 255, 0.42);
  color: var(--accent-deep);
}

/* ——— Landing Hero ——— */

.landing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1.4rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.85) 100%);
  border: 1px solid rgba(122, 60, 255, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
  animation: rise 0.7s ease;
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(42, 127, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left { display: flex; flex-direction: column; gap: 1.2rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(122, 60, 255, 0.1), rgba(42, 127, 255, 0.07));
  border: 1px solid rgba(122, 60, 255, 0.28);
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  width: fit-content;
}

.hero-headline {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--ink) 15%, #2a1a6e 55%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-body { display: flex; flex-direction: column; gap: 0.7rem; }

.hero-body p {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.4rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(122, 60, 255, 0.38);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(122, 60, 255, 0.48);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink-soft);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.68rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(221, 216, 245, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  letter-spacing: 0.01em;
}

.btn-ghost:hover, .btn-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: var(--teal);
  color: var(--teal);
}

/* ——— Hero Visual ——— */

.hero-right { display: flex; align-items: center; justify-content: center; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
}

.hv-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 8px 28px rgba(122, 60, 255, 0.1), 0 2px 6px rgba(15, 15, 26, 0.05);
  border: 1px solid rgba(221, 216, 245, 0.6);
}

.hv-card--top  { animation: hv-float 5s ease-in-out infinite; }
.hv-card--mid  { animation: hv-float 5s ease-in-out infinite; animation-delay: -1.6s; }
.hv-card--bot  { animation: hv-float 5s ease-in-out infinite; animation-delay: -3.2s; }

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

.hv-ai-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.55rem; }

.hv-ai-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(122, 60, 255, 0.2);
  flex-shrink: 0;
}

.hv-ai-label {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.hv-ai-text { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.55; }

.hv-stats-row { display: flex; align-items: center; gap: 0; }

.hv-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }

.hv-stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.hv-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hv-stat-divider {
  width: 1px; height: 2rem;
  background: rgba(221, 216, 245, 0.7);
  flex-shrink: 0;
}

.hv-feature-row { display: flex; align-items: center; gap: 0.75rem; }

.hv-feature-icon {
  width: 2.2rem; height: 2.2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(122, 60, 255, 0.12), rgba(122, 60, 255, 0.05));
  border: 1px solid rgba(122, 60, 255, 0.22);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hv-feature-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--ink); line-height: 1.2;
}

.hv-feature-sub { font-size: 0.72rem; color: var(--ink-soft); margin-top: 0.1rem; }

.hv-feature-badge {
  margin-left: auto;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(122, 60, 255, 0.1);
  border: 1px solid rgba(122, 60, 255, 0.25);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  flex-shrink: 0;
}

/* ——— Features Section ——— */

.features-section { margin-top: 1.4rem; animation: rise 0.78s ease; }

.features-section-header { text-align: center; margin-bottom: 1.2rem; }

.features-section-header h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.features-section-header p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid rgba(221, 216, 245, 0.7);
  border-radius: 18px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 2px 10px rgba(122, 60, 255, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex; flex-direction: column; gap: 0.85rem;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(122, 60, 255, 0.1);
  border-color: rgba(122, 60, 255, 0.22);
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.feature-icon--purple {
  background: rgba(122, 60, 255, 0.1);
  border: 1px solid rgba(122, 60, 255, 0.22);
  color: var(--accent);
}

.feature-icon--blue {
  background: rgba(42, 127, 255, 0.1);
  border: 1px solid rgba(42, 127, 255, 0.22);
  color: var(--teal);
}

.feature-icon--dark {
  background: rgba(15, 15, 26, 0.08);
  border: 1px solid rgba(15, 15, 26, 0.14);
  color: var(--ink);
}

.feature-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--ink); margin: 0;
  letter-spacing: -0.01em;
}

.feature-desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; margin: 0; }

/* ——— Quick Links Section ——— */

.links-section { margin-top: 1.4rem; animation: rise 0.82s ease; }

.links-section-header { margin-bottom: 1rem; }

.links-section-header h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700; margin: 0 0 0.3rem;
  color: var(--ink); letter-spacing: -0.02em;
}

.links-section-header p { margin: 0; color: var(--ink-soft); font-size: 0.93rem; }

.links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }

.link-card {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none;
  background: var(--card);
  border: 1px solid rgba(221, 216, 245, 0.7);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 2px 8px rgba(122, 60, 255, 0.04);
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 60, 255, 0.1);
  border-color: rgba(122, 60, 255, 0.3);
}

.link-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.link-icon--shield { background: rgba(42, 127, 255, 0.1); border: 1px solid rgba(42, 127, 255, 0.22); color: var(--teal); }
.link-icon--doc    { background: rgba(15, 15, 26, 0.08);  border: 1px solid rgba(15, 15, 26, 0.14);  color: var(--ink); }
.link-icon--support{ background: rgba(122, 60, 255, 0.1); border: 1px solid rgba(122, 60, 255, 0.22); color: var(--accent); }
.link-icon--delete { background: rgba(185, 28, 28, 0.07); border: 1px solid rgba(185, 28, 28, 0.16); color: #b91c1c; }

.link-body { flex: 1; min-width: 0; }

.link-body strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 0.18rem; color: var(--ink);
}

.link-body span { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.5; }

.link-arrow {
  font-size: 1.15rem; color: var(--line);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-left: auto;
}

.link-card:hover .link-arrow { color: var(--accent); transform: translateX(3px); }

/* ——— Company Section ——— */

.company-section {
  margin-top: 1.4rem;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid rgba(221, 216, 245, 0.7);
  padding: clamp(1.3rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 3px 12px rgba(122, 60, 255, 0.04);
  animation: rise 0.85s ease;
}

.company-section-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(221, 216, 245, 0.6);
}

.company-section-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(122, 60, 255, 0.1);
  border: 1px solid rgba(122, 60, 255, 0.22);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.company-section-header h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.2rem; font-weight: 700;
  margin: 0; color: var(--ink);
}

.company-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.company-item {
  background: rgba(245, 244, 255, 0.6);
  border: 1px solid rgba(221, 216, 245, 0.5);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.company-item--wide { grid-column: 1 / -1; }

.company-item-label {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 0.3rem;
}

.company-item-value {
  display: block;
  font-size: 0.93rem; color: var(--ink);
  line-height: 1.5;
}

.company-item-value a { color: var(--accent); text-decoration: none; font-weight: 600; }
.company-item-value a:hover { text-decoration: underline; }

/* ——— Generic section ——— */

.section {
  margin-top: 1.1rem;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: clamp(1rem, 2.5vw, 1.6rem);
  box-shadow: 0 3px 10px rgba(122, 60, 255, 0.03);
  animation: rise 0.75s ease;
}

.section h2 { margin-top: 0; font-family: "Space Grotesk", "Segoe UI", sans-serif; }
.section h1 { margin-top: 0; font-family: "Space Grotesk", "Segoe UI", sans-serif; }
.section h3 { margin-bottom: 0.4rem; margin-top: 1.2rem; }

/* ——— Policy Hero ——— */

.read-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--teal) 100%);
  width: 0%; z-index: 9999;
  border-radius: 0 2px 2px 0;
  transition: width 0.08s linear;
  pointer-events: none;
}

.policy-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1rem, 2vw, 1.8rem);
  text-align: center;
  animation: rise 0.5s ease;
}

.policy-eyebrow {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, rgba(122, 60, 255, 0.1), rgba(42, 127, 255, 0.08));
  border: 1px solid rgba(122, 60, 255, 0.3);
  color: var(--accent-deep);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.38rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.policy-hero h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 0 0 1.4rem;
  background: linear-gradient(135deg, var(--ink) 15%, #2a1a6e 55%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-hero .meta { justify-content: center; margin-top: 0; }

.policy-hero .meta span {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(221, 216, 245, 0.65);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ——— Policy Grid ——— */

.policy-grid { display: grid; gap: 0.8rem; padding-bottom: 0.5rem; }

.policy-card {
  background: var(--card);
  border: 1px solid rgba(221, 216, 245, 0.7);
  border-radius: 20px;
  padding: clamp(1.1rem, 2.5vw, 1.65rem) clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 2px 10px rgba(122, 60, 255, 0.04);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  align-items: start;
  position: relative; overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: rise 0.55s ease both;
}

.policy-card::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(122, 60, 255, 0.2));
  opacity: 0;
  transition: opacity 0.22s ease;
  border-radius: 3px 0 0 3px;
}

.policy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(122, 60, 255, 0.09);
  border-color: rgba(122, 60, 255, 0.3);
}

.policy-card:hover::after { opacity: 1; }

.policy-card:nth-child(1)  { animation-delay: 0.04s; }
.policy-card:nth-child(2)  { animation-delay: 0.09s; }
.policy-card:nth-child(3)  { animation-delay: 0.13s; }
.policy-card:nth-child(4)  { animation-delay: 0.17s; }
.policy-card:nth-child(5)  { animation-delay: 0.21s; }
.policy-card:nth-child(6)  { animation-delay: 0.24s; }
.policy-card:nth-child(7)  { animation-delay: 0.27s; }
.policy-card:nth-child(8)  { animation-delay: 0.30s; }
.policy-card:nth-child(9)  { animation-delay: 0.33s; }
.policy-card:nth-child(10) { animation-delay: 0.36s; }
.policy-card:nth-child(11) { animation-delay: 0.39s; }
.policy-card:nth-child(12) { animation-delay: 0.42s; }

.policy-num {
  width: 3rem; height: 3rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122, 60, 255, 0.1), rgba(122, 60, 255, 0.04));
  border: 1px solid rgba(122, 60, 255, 0.22);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.03em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.1rem;
  transition: background 0.22s, border-color 0.22s;
}

.policy-card:hover .policy-num {
  background: linear-gradient(135deg, rgba(122, 60, 255, 0.16), rgba(122, 60, 255, 0.07));
  border-color: rgba(122, 60, 255, 0.38);
}

.policy-content h3 {
  margin: 0.12rem 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
}

.policy-content p {
  margin: 0 0 0.55rem;
  color: var(--ink-soft);
  font-size: 0.95rem; line-height: 1.72;
}

.policy-content p:last-child { margin-bottom: 0; }

.policy-content ul {
  margin: 0 0 0.55rem; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 0.42rem;
}

.policy-content ul:last-child { margin-bottom: 0; }

.policy-content li {
  color: var(--ink-soft);
  font-size: 0.95rem; line-height: 1.65;
  padding-left: 1.2rem; position: relative;
}

.policy-content li::before {
  content: '';
  position: absolute; left: 0.15rem; top: 0.62em;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%; opacity: 0.75;
}

.policy-content a {
  color: var(--teal); font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(42, 127, 255, 0.28);
  transition: border-color 0.18s, color 0.18s;
  padding-bottom: 0.05em;
}

.policy-content a:hover { color: #1a5ec0; border-color: var(--teal); }

.policy-card--contact {
  background: linear-gradient(135deg, #fff 60%, rgba(42, 127, 255, 0.03));
  border-color: rgba(42, 127, 255, 0.22);
}

.policy-card--contact .policy-num {
  color: var(--teal);
  background: linear-gradient(135deg, rgba(42, 127, 255, 0.1), rgba(42, 127, 255, 0.04));
  border-color: rgba(42, 127, 255, 0.22);
}

.policy-card--contact:hover { border-color: rgba(42, 127, 255, 0.38); }
.policy-card--contact::after { background: linear-gradient(180deg, var(--teal), rgba(42, 127, 255, 0.2)); }

/* ——— Meta & Notice ——— */

.meta {
  margin-top: 0.6rem;
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  color: var(--ink-soft); font-size: 0.95rem;
}

.notice {
  border-left: 4px solid var(--teal);
  padding: 0.8rem 0.9rem;
  background: rgba(42, 127, 255, 0.06);
  border-radius: 10px;
}

ul { margin-top: 0.5rem; }

/* ——— Support page ——— */

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.support-card {
  background: rgba(245, 244, 255, 0.6);
  border: 1px solid rgba(221, 216, 245, 0.6);
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
}

.support-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--ink); margin: 0 0 0.7rem;
  display: flex; align-items: center; gap: 0.5rem;
}

.support-card h3 svg { color: var(--accent); flex-shrink: 0; }

.support-card ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }

.support-card li {
  font-size: 0.9rem; color: var(--ink-soft);
  padding-left: 1rem; position: relative;
}

.support-card li::before {
  content: '';
  position: absolute; left: 0; top: 0.6em;
  width: 4px; height: 4px;
  background: var(--accent); border-radius: 50%; opacity: 0.7;
}

.contact-highlight {
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(122, 60, 255, 0.07), rgba(42, 127, 255, 0.05));
  border: 1px solid rgba(122, 60, 255, 0.2);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
}

.contact-highlight-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(122, 60, 255, 0.12);
  border: 1px solid rgba(122, 60, 255, 0.25);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-highlight-body { flex: 1; }

.contact-highlight-body strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.2rem;
}

.contact-highlight-body p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }

.contact-highlight-body a {
  color: var(--accent); font-weight: 700;
  text-decoration: none;
}

.contact-highlight-body a:hover { text-decoration: underline; }

.response-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(42, 127, 255, 0.1);
  border: 1px solid rgba(42, 127, 255, 0.25);
  color: var(--teal);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ——— Footer ——— */

footer {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(221, 216, 245, 0.5);
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ——— Animations ——— */

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ——— Responsive ——— */

@media (max-width: 768px) {
  .landing-hero { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .company-details { grid-template-columns: 1fr; }
  .company-item--wide { grid-column: auto; }
}

@media (max-width: 640px) {
  nav { width: 100%; }
  nav a { flex: 1; text-align: center; font-size: 0.79rem; padding: 0.36rem 0.4rem; }
}

@media (max-width: 520px) {
  .policy-card { grid-template-columns: 1fr; gap: 0.55rem; }
  .policy-num { width: 2.5rem; height: 2.5rem; border-radius: 10px; font-size: 0.72rem; }
}
