:root {
  --bg: #f5f7ff;
  --bg-soft: #eef2ff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --line: rgba(66, 92, 254, 0.14);
  --text: #0d1a42;
  --muted: #67728f;
  --accent: #425cfe;
  --accent-2: #d032af;
  --accent-3: #ffb703;
  --shadow: 0 30px 80px rgba(13, 26, 66, 0.12);
  --radius: 28px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(208, 50, 175, 0.12), transparent 28%),
    radial-gradient(circle at 78% 10%, rgba(66, 92, 254, 0.14), transparent 24%),
    linear-gradient(180deg, #f8f8ff 0%, #f3f5ff 45%, #eef2ff 100%);
  color: var(--text);
}

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

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

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  color: #000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(13, 26, 66, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell,
.footer-shell,
.trust-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-shell {
  min-height: 82px;
}

.brand img {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.lang-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switcher__link.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 54px 0 42px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 38px;
  align-items: center;
  min-height: calc(100svh - 132px);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.6;
}

.hero-orb-a {
  width: 320px;
  height: 320px;
  left: -100px;
  top: 120px;
  background: radial-gradient(circle, rgba(121, 166, 255, 0.38), rgba(121, 166, 255, 0));
}

.hero-orb-b {
  width: 380px;
  height: 380px;
  right: -80px;
  top: 140px;
  background: radial-gradient(circle, rgba(75, 241, 210, 0.24), rgba(75, 241, 210, 0));
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero h1,
.section-head h2,
.story-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.hero-lead,
.section-head p,
.story-copy p,
.feature p,
.security-grid p,
.process-line p,
.faq-list p,
.contact-card p,
.contact-list span,
.trust-strip p,
.story-list p {
  color: var(--muted);
}

.hero-lead {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.button {
  min-height: 56px;
  padding: 0 24px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(66, 92, 254, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: #d7def1;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-grid {
  position: absolute;
  inset: 70px 0 0 40px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 92%);
}

.hero-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-shot-main {
  inset: 80px 56px 60px 42px;
}

.hero-shot-top {
  top: 10px;
  right: 0;
  width: 220px;
  height: 270px;
}

.hero-shot-bottom {
  left: 0;
  bottom: 0;
  width: 240px;
  height: 190px;
}

.hero-caption {
  position: absolute;
  right: 24px;
  bottom: 12px;
  display: grid;
  gap: 6px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 14, 29, 0.72);
  backdrop-filter: blur(18px);
}

.hero-caption strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.hero-caption span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.trust-strip {
  padding: 0 0 36px;
}

.trust-shell {
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.trust-strip p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.section {
  padding: 110px 0;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(208, 50, 175, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
}

.section-banded,
.section-faq {
  background: rgba(255, 255, 255, 0.5);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.compact {
  margin-bottom: 34px;
}

.section-head h2,
.story-copy h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head p,
.story-copy p {
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.feature-grid,
.security-grid,
.story-list {
  display: grid;
  gap: 20px;
}

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

.feature,
.security-grid article,
.story-list article,
.contact-list > a,
.contact-list > div,
.faq-list details {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(14px);
}

.feature {
  padding: 28px;
}

.feature-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.feature h3,
.security-grid h3,
.story-list h3,
.process-line h3,
.faq-list summary,
.contact-list strong {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.feature h3,
.security-grid h3,
.story-list h3 {
  font-size: 1.3rem;
}

.feature p,
.security-grid p,
.story-list p,
.faq-list p {
  margin: 14px 0 0;
  line-height: 1.7;
}

.feature-link,
.mini-links a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-2);
  font-weight: 700;
}

.feature-link:hover,
.mini-links a:hover {
  color: var(--text);
}

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

.sector-grid article,
.page-panel {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(14px);
  font-family: "Sora", sans-serif;
  line-height: 1.5;
}

.story-shell,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.story-list article {
  padding: 26px 28px;
}

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

.security-grid article {
  padding: 28px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.process-line article {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(121, 166, 255, 0.18), rgba(75, 241, 210, 0.18));
  color: var(--accent-2);
  font-weight: 800;
}

.process-line p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 34px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 34px 22px 0;
  font-size: 1.02rem;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 24px;
  color: var(--accent-2);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0 0 22px;
  max-width: 78ch;
}

.contact-card {
  max-width: 640px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list > a,
.contact-list > div {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
}

.contact-list span {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-list strong {
  font-size: 1.18rem;
  line-height: 1.4;
}

.page-hero {
  padding: 88px 0 44px;
}

.page-hero-legal {
  padding-bottom: 10px;
}

.page-hero h1 {
  margin: 0;
  max-width: 15ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-lead {
  max-width: 72ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
}

.page-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 242, 255, 0.96));
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  max-width: 270px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(66, 92, 254, 0.12);
  box-shadow: 0 20px 60px rgba(13, 26, 66, 0.12);
}

.page-hero-note strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.page-hero-note span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

.page-panel h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.page-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

.content-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.content-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-copy a {
  color: var(--accent-2);
}

.site-footer {
  padding: 30px 0 44px;
  border-top: 1px solid rgba(66, 92, 254, 0.1);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero-shell,
  .story-shell,
  .contact-shell,
  .feature-grid,
  .security-grid,
  .process-line,
  .page-grid,
  .sector-grid,
  .page-hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .header-shell,
  .footer-shell,
  .trust-shell {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .page-hero-media {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(var(--shell), calc(100% - 24px));
  }

  .site-header {
    position: static;
  }

  .header-shell {
    min-height: auto;
    padding: 18px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-shot-main {
    inset: 56px 20px 48px 20px;
  }

  .hero-shot-top {
    width: 148px;
    height: 184px;
  }

  .hero-shot-bottom {
    width: 168px;
    height: 136px;
  }

  .hero-caption {
    right: 14px;
    left: 14px;
    bottom: 10px;
    max-width: none;
  }

  .section {
    padding: 82px 0;
  }

  .page-hero-note {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .feature,
  .security-grid article,
  .story-list article,
  .faq-list details,
  .contact-list > a,
  .contact-list > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
