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

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: rgba(255, 255, 255, 0.92);
  background: #0b0e14;
  overflow-x: clip;
}

body.site{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site__content{
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid rgba(255,255,255,0.75);
  outline-offset: 3px;
  border-radius: 10px;
}

:root{
  --bg: #0b0e14;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted-2: rgba(255,255,255,0.55);
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --radius: 18px;

  /* Layout */
  --max: 1180px;
  --pad: clamp(16px, 3vw, 28px);
  --copyWidth: min(1120px, calc(100vw - 2*var(--pad)));
}

/* Subtle background chrome (pattern + vignette) */
.page-chrome{
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(1200px 700px at 30% 10%, rgba(120, 80, 255, 0.12), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(255, 140, 60, 0.10), transparent 60%),
    radial-gradient(1200px 900px at 50% 110%, rgba(0,0,0,0.65), transparent 55%),
    /* optional low-value pattern layer */
    url("/assets/pattern.png");
  background-size: cover, cover, cover, 1863px 1072px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  opacity: 0.3;
  filter: saturate(0.95);
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* ---------- Header / nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(10,12,18,0.78), rgba(10,12,18,0.35));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--pad);
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 180px;
}

.brand__icon{
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brand__name{
  font-family: "Cantora One", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 26px;
  text-transform: lowercase;
}

.brand__tag{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 4px;
}

/* desktop menu */
.nav__menu{
  display:flex;
  align-items:center;
  gap: clamp(16px, 2vw, 30px);
}

.nav__link{
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 10px 6px;
  border-radius: 12px;
}

.nav__link:hover{ color: rgba(255,255,255,0.95); }
.nav__link.is-active{ color: rgba(255,255,255,0.95); }

/* mobile toggle */
.nav__toggle{
  display:none;
  appearance:none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  width: 44px;
  height: 40px;
  padding: 0;
  align-items:center;
  justify-content:center;
}

.hamburger{
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  position: relative;
  border-radius: 999px;
}
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
}
.hamburger::before{ top: -6px; }
.hamburger::after { top:  6px; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: clamp(520px, 72vh, 820px);
  display:flex;
  align-items:flex-end;
  padding: 0 var(--pad) clamp(28px, 6vh, 54px);
}

.hero__media{
  position:absolute;
  inset: 0;
  z-index: -1;
  overflow:hidden;
}

.hero__video{
  position:absolute;
  inset: 0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: blur(0px) saturate(1.05) contrast(1.02);
}

/* Overlay: darken + add subtle gradient like screenshot */
.hero__overlay{
  position:absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 15% 70%, rgba(35, 60, 255, 0.32), transparent 55%),
    radial-gradient(900px 700px at 85% 35%, rgba(255, 120, 50, 0.24), transparent 55%),
    linear-gradient(to bottom, rgba(7,9,14,0.35), rgba(7,9,14,0.82));
}

.hero__content{
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-bottom: 12px;
}

.hero__kicker{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

.hero__title{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  /* Fluid, clamps nicely for ultrawide down to phones */
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1.02;
  text-shadow: 0 25px 80px rgba(0,0,0,0.55);
}

.hero__sub{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  margin: 0 0 22px;
  letter-spacing: 0.03em;
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.72);
}

.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.26);
}

.btn--primary{
  background: rgba(255,255,255,0.92);
  color: rgba(10,12,18,0.92);
  border-color: rgba(255,255,255,0.70);
}
.btn--primary:hover{
  background: rgba(255,255,255,0.98);
}

.btn--ghost{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
}

/* ---------- Sections ---------- */
.section{
  padding: 26px 0 34px;
}

.section__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section__title{
  margin: 10px 0 18px;
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

/* ---------- Cards ---------- */
.cards{
  display:grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}

.card{
  grid-column: span 4;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
}

.card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.14);
}

.card__link{
  display:block;
  height:100%;
}

.card__media{
  aspect-ratio: 16 / 9;
  overflow:hidden;
  background: rgba(0,0,0,0.25);
}

.card__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.02);
}

.card__meta{
  padding: 14px 14px 16px;
}

.card__title{
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card__desc{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
}

/* ---------- Footer ---------- */
.footer{
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0 36px;
  position: relative; /* ensures it paints normally above fixed layers */
  z-index: 2;

  background: linear-gradient(
    to bottom,
    rgba(7,9,14,0.55),
    rgba(7,9,14,0.88)
  );

  /* optional: keeps the cinematic vibe */
  backdrop-filter: blur(10px);
}
.footer__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.muted{ color: rgba(255,255,255,0.62); }

/* ---------- Responsiveness ---------- */
@media (max-width: 980px){
  .card{ grid-column: span 6; }
}

@media (max-width: 640px){
  .nav__toggle{ display:flex; }
  .nav__menu{
    position: absolute;
    right: var(--pad);
    top: 66px;
    width: min(260px, calc(100vw - 2*var(--pad)));
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: rgba(12, 14, 20, 0.88);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open{ display:flex; }

  .nav__link{ width: 100%; padding: 12px 10px; }

  .hero{
    align-items:flex-end;
    min-height: 72vh;
  }

  .card{ grid-column: span 12; }
}

/* ---------- Copy pages ---------- */

.page--copy{
  position: relative;
}

.page--copy::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(1200px 900px at -10% 20%, rgba(80, 90, 255, 0.18), transparent 55%),
    radial-gradient(1200px 900px at 110% 30%, rgba(255, 140, 70, 0.16), transparent 55%),
    linear-gradient(to bottom, rgba(7,9,14,0.18), rgba(7,9,14,0.55) 40%, rgba(7,9,14,0.70));
}

.gutter-video{
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  overflow: hidden;
}

.gutter-video__vid{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);
  opacity: 0.75;
}

.gutter-video__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 15% 70%, rgba(35, 60, 255, 0.24), transparent 55%),
    radial-gradient(900px 700px at 85% 35%, rgba(255, 120, 50, 0.20), transparent 55%),
    linear-gradient(to bottom, rgba(7,9,14,0.35), rgba(7,9,14,0.86));
}

.page--copy .gutter-video{
  --hole: calc(var(--copyWidth) + (2 * var(--pad)));
  --feather: 140px;

  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0,0,0,1) 0,
    rgba(0,0,0,1) calc(50% - (var(--hole)/2) - var(--feather)),
    rgba(0,0,0,0) calc(50% - (var(--hole)/2)),
    rgba(0,0,0,0) calc(50% + (var(--hole)/2)),
    rgba(0,0,0,1) calc(50% + (var(--hole)/2) + var(--feather)),
    rgba(0,0,0,1) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0,0,0,1) 0,
    rgba(0,0,0,1) calc(50% - (var(--hole)/2) - var(--feather)),
    rgba(0,0,0,0) calc(50% - (var(--hole)/2)),
    rgba(0,0,0,0) calc(50% + (var(--hole)/2)),
    rgba(0,0,0,1) calc(50% + (var(--hole)/2) + var(--feather)),
    rgba(0,0,0,1) 100%
  );
}

.page-chrome.page--copy-chrome{
  opacity: 0.30;
}

.copy-veil{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--copyWidth);
  z-index: -3;
  pointer-events: none;

  background:
    radial-gradient(120% 90% at 50% 10%, rgba(255,255,255,0.04), transparent 55%),
    linear-gradient(to bottom, rgba(7,9,14,0.60), rgba(7,9,14,0.80));

  box-shadow:
    -180px 0 220px rgba(7,9,14,0.42),
     180px 0 220px rgba(7,9,14,0.42);
}

.page__cover{
  position: relative;
  height: clamp(44px, 8vh, 96px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page__coverMedia{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  opacity: 0.85;
  filter: saturate(1.05) contrast(1.02);
}
.page__coverOverlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 70%, rgba(35, 60, 255, 0.16), transparent 60%),
    radial-gradient(900px 700px at 85% 35%, rgba(255, 120, 50, 0.12), transparent 60%),
    linear-gradient(to bottom, rgba(7,9,14,0.00), rgba(7,9,14,0.65));
}

.copy{
  width: var(--copyWidth);
  margin: 0 auto;
  padding: clamp(18px, 3vh, 30px) var(--pad) 90px;
  position: relative;
  z-index: 0;
}

.copy__head{
  margin-bottom: 22px;
  max-width: none;
  width: 100%;
}

.copy__kicker{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin: 0 0 14px;
  opacity: 0.9;
}

.copy__kicker::after, .copy h2::after {
  content:"";
  display:block;
  width: 100%;
  margin: 12px 0 0; /* no auto-centering needed */
  height: 2px;
  background: linear-gradient(to right,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.05)
  );
  border-radius: 999px;
}

.copy__title{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 2px 0 10px;
  font-size: clamp(32px, 3.6vw, 52px);
  text-transform: none;
  max-width: 96ch;
}

.copy__sub{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
  max-width: 96ch;
}

.copy__body{
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  max-width: none;
  width: 100%;
}

.copy__body p{ 
  margin: 0 0 16px;
}

.copy__body > p,
.copy__body > ul,
.copy__body > ol,
.copy__body > pre,
.copy__body > blockquote{
  max-width: 96ch;
}

.copy__body > h2,
.copy__body > h3{
  max-width: 96ch;
}


.copy__body h2{
  margin: 34px 0 12px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.copy__body h3{
  margin: 22px 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.copy__body a{
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  text-underline-offset: 3px;
}

.copy__body a:hover{
  text-decoration-color: rgba(255,255,255,0.55);
}

/* ---------- Inline code (only) ---------- */
.copy__body :not(pre) > code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.92em;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 0.15em 0.35em;
  border-radius: 8px;
}

/* ---------- Base code blocks ---------- */
.copy__body pre{
  overflow: auto;
  padding: 16px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

.copy__body pre code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.7;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

/* Prevent theme spans from picking up any backgrounds */
pre code span{
  background: transparent !important;
  box-shadow: none !important;
}

/* ---------- Zola linenos layout ---------- */
pre[data-linenos]{
  position: relative;
  padding: 0;
  padding-bottom: 14px; /* bottom breathing room */
  overflow: auto;
  border-radius: 16px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

pre[data-linenos] table{
  border-collapse: collapse;
  width: 100%;
}

pre[data-linenos] td{
  padding: 0;
  vertical-align: top;
}

pre[data-linenos] tr{
  display: grid;
  grid-template-columns: 3.5ch 1fr; /* gutter | code */
}

pre[data-linenos] td:first-child{
  display: flex;
  align-items: center;          /* vertical centering */
  justify-content: flex-end;
  padding: 0 2px;

  user-select: none;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  line-height: 1.7;

  opacity: 0.55;
  transition: opacity 0.15s ease;
}

pre[data-linenos]:hover td:first-child{
  opacity: 0.9;
}

pre[data-linenos] td:last-child{
  padding: 0 18px 0 6px;
}

/* Hover highlight (skip last row to avoid bottom padding weirdness) */
pre[data-linenos] tr:not(:last-child):hover{
  background: rgba(255,255,255,0.035);
}

/* ---------- Filename header (data-name) ---------- */
pre[data-name]{
  padding-top: 40px;
}

pre[data-name]::before{
  content: attr(data-name);
  position: absolute;
  top: 10px;
  left: 14px;

  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  opacity: 0.85;
}

/* ---------- Copy toolbar (injected by JS) ---------- */
pre[data-lang] .codebar{
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

pre[data-lang] .codebar__lang{
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

pre[data-lang] .codebar__copy{
  appearance: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.78);
  width: 30px;
  height: 28px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

pre[data-lang] .codebar__copy:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
}

pre[data-lang] .codebar__copy:active{
  transform: translateY(1px);
}

pre[data-lang] .codebar__copy:disabled{
  opacity: 0.6;
  cursor: default;
}

pre[data-lang] .codebar__copy svg{
  width: 16px;
  height: 16px;
  display: block;
}

pre[data-lang] .codebar__copy svg *{
  stroke: currentColor;
}



/* Responsive */
@media (min-width: 1100px){
  .copy{
    margin-left: calc((100vw - var(--copyWidth)) / 2 - 1.5vw);
    margin-right: auto;
  }
}

@media (max-width: 900px){
  .gutter-video{ display: none; }
  .copy-veil{
    width: 100%;
    left: 0;
    transform: none;
    box-shadow: none;
    background:
      linear-gradient(to right, rgba(7,9,14,0.00), rgba(7,9,14,0.55) 12%, rgba(7,9,14,0.55) 88%, rgba(7,9,14,0.00)),
      linear-gradient(to bottom, rgba(7,9,14,0.60), rgba(7,9,14,0.80));
  }
}

@media (max-width: 720px){
  .page__cover{ height: 80px; }
  .copy{ padding-top: 26px; }
}

@media (max-width: 520px){
  .page__cover{ height: 56px; }
}

/* ---------- Footer (grid) ---------- */
.footer{
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 34px 0 26px;
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(7,9,14,0.55), rgba(7,9,14,0.88));
  backdrop-filter: blur(10px);
}

.footer__grid{
  display: grid;
  grid-template-columns: minmax(320px, 1fr) max-content; /* brand | links group */
  gap: clamp(18px, 3vw, 54px);
  align-items: start;
}

.footer__brandRow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px; /* pushes the blurb down */
}

.footer__brandIcon{
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}

.footer__brandText{ display:flex; flex-direction:column; line-height:1.05; }
.footer__brandName{
  font-family: "Cantora One", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 26px;
  text-transform: lowercase;
}
.footer__brandTag{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.footer__blurb{
  margin: 0;
  max-width: 36ch;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.7;
}

/* Right-align the whole 3-column block */
.footer__links{
  display: grid;

  /* shrink-to-fit column group */
  grid-template-columns: repeat(3, max-content);
  gap: clamp(32px, 4vw, 72px);

  justify-self: end;     /* now it can actually move right */
  justify-content: end;  /* keep columns packed to the right inside the group */
  text-align: left;
}

.footer__title{
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer__link{
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  line-height: 1.4;
  position: relative;
}

.footer__link:hover{
  color: rgba(255,255,255,0.95); 
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.35);
  text-underline-offset: 3px;
}

.footer__social{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__icon{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  opacity: 0.85;
}

.footer__social:hover .footer__icon{ opacity: 1; }

.footer__bottom{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__copy{
  margin: 0;
  font-size: 13px;
}

.footer__legal{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer__dot{ color: rgba(255,255,255,0.35); opacity: 0.5; }

.footer__link--small{
  font-size: 13px;
  color: rgba(255,255,255,0.60);
}
.footer__link--small:hover{ color: rgba(255,255,255,0.95); }

/* Responsive */
@media (max-width: 980px){
  .footer__grid{
    grid-template-columns: 1fr;
  }
  .footer__links{
    justify-self: start;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 560px){
  .footer__links{
    grid-template-columns: 1fr;
  }
  .footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}