/* Odingram — site styles */

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #02060f;
  --surface: #040913;
  --surface-2: #060c18;
  --text: #ffffff;
  --muted: #a2a9b8;
  --muted-2: #b4bac7;
  --line: rgba(196, 214, 232, .16);
  --line-strong: rgba(196, 214, 232, .28);
  --gold: #ffdcaa;
  --blue: #aad2fa;
  --focus: #9fe0ff;
  --pad-x: clamp(20px, 6vw, 96px);
  --maxw: 1340px;
  --readw: 74ch;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

img, video { max-width: 100%; height: auto; }

h1, h2, h3, h4 { text-wrap: balance; margin: 0; }

p { margin: 0 0 1.05em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 99;
  padding: 12px 20px;
  background: #f4f8fd;
  color: #050a14;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip:focus { left: 0; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.wrap--narrow { max-width: 980px; }

/* ---------- header ---------- */

.site-header {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 3vw, 34px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.site-header--solid { border-bottom: 1px solid var(--line); max-width: none; }
.site-header--solid > * { max-width: none; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: .14em;
  white-space: nowrap;
}
.brand-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 226, 178, .8);
  flex: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 36px);
  font-size: 15px;
}
.nav a { color: #e8edf5; opacity: .9; }
.nav a:hover, .nav a[aria-current] { opacity: 1; color: #fff; }
.nav .nav-cta {
  padding: 9px 20px;
  border: 1.5px solid rgba(196, 214, 232, .72);
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 1;
}
.nav .nav-cta:hover { background: rgba(255, 255, 255, .07); }

@media (max-width: 720px) {
  .nav .nav-link { display: none; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.btn svg { flex: none; }

.btn--glass {
  padding: 17px 34px;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 500;
  background:
    linear-gradient(180deg, rgba(6, 12, 22, 0) 45%, rgba(6, 12, 22, .12) 78%, rgba(6, 12, 22, .28) 100%),
    linear-gradient(90deg, rgba(255, 226, 178, .17) 0%, rgba(255, 236, 208, .07) 22%, rgba(176, 206, 238, .03) 55%, rgba(150, 196, 244, .09) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, .24) 0%, rgba(255, 255, 255, .11) 26%, rgba(255, 255, 255, .05) 60%, rgba(255, 255, 255, .04) 100%);
  backdrop-filter: blur(26px) saturate(.45);
  -webkit-backdrop-filter: blur(26px) saturate(.45);
  box-shadow: 0 -2px 20px rgba(255, 224, 176, .2), 0 0 34px rgba(168, 204, 252, .16), inset 0 1.5px 0 0 rgba(255, 251, 242, .45);
  border: 1.5px solid rgba(255, 240, 220, .35);
}
.btn--glass:hover { box-shadow: 0 -2px 26px rgba(255, 224, 176, .3), 0 0 44px rgba(168, 204, 252, .24), inset 0 1.5px 0 0 rgba(255, 251, 242, .55); }

.btn--solid {
  padding: 15px 30px;
  font-size: 17px;
  background: #f4f8fd;
  color: #050a14;
}
.btn--solid:hover { background: #fff; color: #050a14; }

.btn--ghost {
  padding: 14px 28px;
  font-size: 16px;
  border: 1px solid var(--line-strong);
  color: #dbe4f0;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .05); color: #fff; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #03060c;
}
.hero-media img, .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero-media video { opacity: 0; transition: opacity .8s ease; }
.hero-media video.is-ready { opacity: 1; }
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(58% 42% at 50% 47%, rgba(3, 7, 15, .82) 0%, rgba(3, 7, 15, .5) 60%, rgba(3, 7, 15, 0) 100%),
    linear-gradient(180deg, rgba(3, 7, 15, .5) 0%, rgba(3, 7, 15, .05) 24%, rgba(3, 7, 15, .05) 52%, rgba(2, 6, 15, .96) 94%, rgba(2, 6, 15, 1) 100%);
}
.hero > .site-header,
.hero > .hero-body { position: relative; z-index: 2; }

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(16px, 2vw, 26px);
  padding: 24px var(--pad-x) clamp(40px, 6vw, 64px);
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hero-body h1 {
  font-weight: 400;
  font-size: clamp(31px, 4.2vw, 58px);
  line-height: 1.16;
  letter-spacing: -.01em;
  max-width: 18ch;
}
.hero-lead {
  color: #c3cad7;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.6;
  max-width: 46ch;
  margin: 0;
}
.chips {
  list-style: none;
  margin: clamp(16px, 2.4vw, 34px) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px clamp(20px, 3vw, 46px);
  color: #e2ebf5;
  font-size: 15px;
}
.chips li { display: flex; align-items: center; gap: 10px; }
.chips svg { width: 8px; height: 15px; flex: none; }

.scroll-hint {
  width: 1px;
  height: 46px;
  margin-top: 10px;
  background: linear-gradient(180deg, rgba(186, 200, 214, .7), rgba(206, 220, 232, .92) 52%, rgba(182, 198, 212, 0));
}

/* ---------- page head (inner pages) ---------- */

.page-head {
  padding: clamp(40px, 6vw, 78px) var(--pad-x) clamp(28px, 4vw, 48px);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.page-head::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 420px;
  z-index: -1;
  background: radial-gradient(60% 100% at 50% 0%, rgba(150, 196, 244, .09) 0%, rgba(2, 6, 15, 0) 70%);
  pointer-events: none;
}
.page-head h1 {
  font-weight: 400;
  font-size: clamp(30px, 3.9vw, 50px);
  line-height: 1.18;
  letter-spacing: -.01em;
  max-width: 20ch;
  margin-bottom: 18px;
}
.page-head .lead {
  color: var(--muted-2);
  font-size: clamp(16.5px, 1.4vw, 19.5px);
  line-height: 1.65;
  max-width: 62ch;
}

.crumbs {
  font-size: 13.5px;
  color: #8a92a3;
  margin-bottom: clamp(18px, 2.5vw, 30px);
}
.crumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.crumbs li::after { content: '/'; margin-left: 8px; opacity: .55; }
.crumbs li:last-child::after { content: ''; }
.crumbs a:hover { color: #dbe4f0; }

/* ---------- sections ---------- */

.section {
  padding: clamp(52px, 7vw, 104px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section--tight { padding-top: clamp(28px, 4vw, 52px); }
.section--flush { padding-bottom: 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(30px, 4vw, 56px);
  max-width: 640px;
}
.eyebrow {
  font-size: 12.5px;
  letter-spacing: .2em;
  color: #9aa3b4;
  text-transform: uppercase;
}
h2 {
  font-weight: 400;
  font-size: clamp(25px, 2.9vw, 39px);
  line-height: 1.24;
  letter-spacing: -.005em;
}
h3 {
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.35;
}
h4 { font-weight: 600; font-size: 17px; line-height: 1.4; }

/* ---------- prose ---------- */

.prose { max-width: var(--readw); color: #cdd4e0; font-size: 17px; }
.prose > h2 { color: #fff; margin: clamp(36px, 4vw, 58px) 0 16px; }
.prose > h2:first-child { margin-top: 0; }
.prose > h3 { color: #fff; margin: 32px 0 12px; }
.prose > p > strong, .prose li > strong { color: #fff; font-weight: 600; }
.prose a:not(.btn) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(170, 210, 250, .4);
}
.prose a:not(.btn):hover { color: #fff; text-decoration-color: rgba(255, 255, 255, .7); }
.prose ul, .prose ol { margin: 0 0 1.15em; padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: rgba(170, 210, 250, .7); }
.lead-answer {
  font-size: 18.5px;
  line-height: 1.68;
  color: #dde3ec;
}

/* ---------- cards ---------- */

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 292px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.card {
  background: var(--surface);
  padding: clamp(24px, 2.8vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 212px;
}
.card-num { font-size: 13px; }
.card-num--gold { color: var(--gold); }
.card-num--blue { color: var(--blue); }
.card h3 { color: #fff; }
.card p { color: var(--muted); font-size: 15.5px; line-height: 1.7; margin: 0; }
.card--link { align-items: flex-start; gap: 12px; }
.card--link:hover { background: #060d1a; }
.card--link .c-go { display: inline-flex; align-items: center; gap: 10px; color: #fff;
  font-weight: 600; font-size: 17px; }
.card--link:hover .c-go { color: var(--gold); }

.grid-plain {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.tile {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 2.4vw, 30px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .028), rgba(255, 255, 255, .008));
}
.tile h3 { color: #fff; margin-bottom: 10px; }
.tile p { color: var(--muted); font-size: 15.5px; margin: 0; }

/* ---------- steps ---------- */

.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li {
  counter-increment: s;
  position: relative;
  padding: 22px 26px 22px 72px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .028), rgba(255, 255, 255, .008));
}
.steps li::before {
  content: counter(s);
  position: absolute;
  left: 24px;
  top: 21px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 220, 170, .4);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}
.steps h3 { color: #fff; margin-bottom: 6px; }
.steps p { color: var(--muted); font-size: 15.5px; margin: 0; }

/* ---------- table ---------- */

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; }
table { width: 100%; border-collapse: collapse; font-size: 15.5px; min-width: 620px; }
caption { text-align: left; color: var(--muted); font-size: 14.5px; padding: 18px 20px 16px;
  border-bottom: 1px solid var(--line); }
th, td { padding: 16px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
thead th { color: #fff; font-weight: 600; font-size: 14.5px; background: rgba(255, 255, 255, .03); }
tbody th { color: #e6ebf3; font-weight: 500; }
tbody td { color: var(--muted); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

/* ---------- faq ---------- */

.faq { display: grid; gap: 12px; max-width: 900px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .028), rgba(255, 255, 255, .008));
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 24px;
  position: relative;
  font-size: 16.5px;
  font-weight: 500;
  color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 27px;
  width: 9px;
  height: 9px;
  border-right: 1.7px solid rgba(214, 232, 250, .8);
  border-bottom: 1.7px solid rgba(214, 232, 250, .8);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 31px; }
.faq .faq-a { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }
.faq .faq-a p { margin-bottom: .8em; }

/* ---------- callout ---------- */

.note {
  border: 1px solid var(--line);
  border-left: 2px solid rgba(255, 220, 170, .5);
  border-radius: 12px;
  padding: 18px 22px;
  background: rgba(255, 226, 178, .035);
  color: #c6ccd8;
  font-size: 15.5px;
}
.note strong { color: #fff; }

/* ---------- cta band ---------- */

.cta-band {
  max-width: 1148px;
  margin: 0 auto;
  border-radius: 30px;
  padding: clamp(36px, 5.5vw, 82px) clamp(22px, 5vw, 68px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background:
    linear-gradient(90deg, rgba(255, 226, 178, .08) 0%, rgba(150, 196, 244, .08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  border: 1px solid rgba(196, 214, 232, .22);
}
.cta-band h2 { max-width: 20ch; }
.cta-band p { color: var(--muted); font-size: 17px; max-width: 46ch; margin: 0; }
.cta-sub { font-size: 14px; color: #8a92a3; }

/* ---------- related links ---------- */

.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 14px; }
.related a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, .015);
}
.related a:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, .04); }
.related .r-title { display: block; font-weight: 600; font-size: 16.5px; color: #fff; margin-bottom: 7px; }
.related .r-desc { display: block; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(52px, 7vw, 104px);
  padding: clamp(40px, 5vw, 66px) var(--pad-x) 36px;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: clamp(26px, 3.5vw, 48px);
  margin-bottom: clamp(32px, 4vw, 52px);
}
.footer-col h2, .footer-col .f-title {
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9aa3b4;
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: #c3cad7; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-about { color: var(--muted); font-size: 15px; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #8a92a3;
  font-size: 13.5px;
  line-height: 1.8;
}

/* ---------- 404 ---------- */

.err { text-align: center; padding: clamp(70px, 12vw, 150px) var(--pad-x); }
.err .code { font-size: clamp(56px, 10vw, 110px); font-weight: 600; color: rgba(255, 255, 255, .1); line-height: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
