:root{
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface2: #f1f4f8;
  --text: #0b1f33;
  --muted: #4b5b6b;
  --muted2: #6a7a8a;
  --border: rgba(13, 42, 69, .14);
  --shadow: 0 18px 40px rgba(13, 42, 69, .12);

  --brand: #0d2a45;
  --brand2: #123b63;
  --accent: #f1a65a;
  --accent2: #f5c08a;
  --ok: #0ea5a4;
  --danger: #e11d48;

  --radius: 18px;
  --radius2: 14px;
  --container: 1040px;
  --pad: 18px;

  --focus: 0 0 0 4px rgba(13, 42, 69, .18);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(13,42,69,.08), transparent 55%),
    radial-gradient(900px 600px at 90% 0%, rgba(241,166,90,.16), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #ffffff 100%);
  line-height: 1.5;
}

a{ color: var(--brand2); text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.skipLink{
  position:absolute;
  left:-999px;
  top: 10px;
  z-index: 9999;
  background: #fff;
  color:#000;
  padding: 10px 12px;
  border-radius: 10px;
}
.skipLink:focus{ left: 12px; outline: none; box-shadow: 0 0 0 4px rgba(0,0,0,.25); }

.topbar{
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(13, 42, 69, .10);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.brand__logo{
  height: 34px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.topbar__cta{
  display:flex;
  align-items:center;
  gap: 10px;
}
.chip{
  display:none;
  gap: 10px;
  align-items:baseline;
  padding: 10px 12px;
  border: 1px solid rgba(13, 42, 69, .14);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}
.chip__label{ color: var(--muted2); font-size: 12px; }
.chip__value{ font-weight: 700; letter-spacing: .2px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  letter-spacing: .2px;
  background: var(--surface2);
  color: var(--brand);
  transition: transform .08s ease, background .18s ease, border-color .18s ease;
  text-decoration: none;
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn:focus{ outline:none; box-shadow: var(--focus); }
.btn--primary{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
  color: #ffffff;
  border-color: rgba(13, 42, 69, .22);
}
.btn--ghost{
  background: rgba(255,255,255,.92);
  border-color: rgba(13, 42, 69, .16);
}
.btn--wide{ width: 100%; }

.page{ padding-bottom: 48px; }

.hero{
  padding: 26px 0 10px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.hero__card{
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.96));
  border: 1px solid rgba(13, 42, 69, .14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0 0 10px;
}
h1{
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  margin: 0 0 10px;
}
.lead{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
}
.hero__actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.hero__highlights{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.mini{
  border-radius: 16px;
  padding: 12px 12px;
  background: var(--surface2);
  border: 1px solid rgba(13, 42, 69, .12);
}
.mini__title{ font-size: 12px; color: var(--muted2); }
.mini__value{ font-size: 22px; font-weight: 900; letter-spacing: .2px; margin-top: 2px; }
.mini__desc{ font-size: 12px; color: var(--muted); }

.hero__stack{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.linkCard{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(13, 42, 69, .14);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: 0 10px 24px rgba(13, 42, 69, .10);
  transition: transform .08s ease, background .18s ease;
}
.linkCard:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,1);
  text-decoration:none;
}
.linkCard__title{ font-weight: 800; letter-spacing: .2px; margin-bottom: 4px; }
.linkCard__meta{ color: var(--muted); font-size: 13px; }

.section{
  padding: 26px 0;
}
.section--soft{
  background: linear-gradient(180deg, transparent, rgba(13,42,69,.03), transparent);
}
.sectionHeader{
  margin-bottom: 14px;
}
.sectionHeader h2{
  margin: 0 0 4px;
  font-size: 22px;
  letter-spacing: .2px;
}
.sectionHeader p{
  margin: 0;
  color: var(--muted);
}
.muted{ color: var(--muted); }

.videoCard{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(13, 42, 69, .14);
  background: #000;
  box-shadow: var(--shadow);
}

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

.card{
  border-radius: var(--radius2);
  padding: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(13, 42, 69, .12);
  min-height: 100%;
}
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.card--accent{
  background: linear-gradient(180deg, rgba(241,166,90,.20), rgba(255,255,255,.92));
  border-color: rgba(241,166,90,.55);
}
.card--accent p{ color: rgba(11,31,51,.86); }

.checkList{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(11,31,51,.86);
  display: grid;
  gap: 6px;
  font-size: 14px;
}
.checkList li{
  padding-left: 4px;
}

.ctaBand{
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 42, 69, .14);
  background: linear-gradient(135deg, rgba(13,42,69,.06), rgba(241,166,90,.16));
  box-shadow: 0 14px 30px rgba(13, 42, 69, .08);
  padding: 16px;
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ctaBand__title{
  font-weight: 900;
  letter-spacing: .2px;
}
.ctaBand__sub{
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.ctaBand__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.socialGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.socialCard{
  display:flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 42, 69, .14);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(13, 42, 69, .08);
  transition: transform .08s ease, background .18s ease;
  text-decoration: none;
  color: var(--brand);
}
.socialCard:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,1);
  text-decoration: none;
}
.socialCard:focus{
  outline: none;
  box-shadow: var(--focus);
}
.socialIcon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: var(--surface2);
  border: 1px solid rgba(13, 42, 69, .12);
  color: var(--brand2);
  flex: 0 0 auto;
}
.socialMeta{
  display:grid;
  gap: 2px;
  min-width: 0;
}
.socialTitle{
  font-weight: 900;
  letter-spacing: .2px;
}
.socialHint{
  color: var(--muted);
  font-size: 13px;
}

.formCard{
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(13, 42, 69, .14);
  box-shadow: 0 14px 30px rgba(13, 42, 69, .10);
}
.form{
  display:grid;
  gap: 12px;
}
.field{
  display:grid;
  gap: 8px;
}
label{
  font-weight: 700;
  color: rgba(11,31,51,.92);
  font-size: 13px;
}
input, textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(13, 42, 69, .18);
  background: rgba(255,255,255,.98);
  color: var(--text);
  padding: 12px 12px;
  font-size: 15px;
}
textarea{ resize: vertical; min-height: 130px; }
input:focus, textarea:focus{
  outline: none;
  box-shadow: var(--focus);
  border-color: rgba(13, 42, 69, .35);
}
.hp{ position:absolute; left:-9999px; width: 1px; height: 1px; overflow:hidden; }

.form__actions{
  display:grid;
  gap: 10px;
  margin-top: 4px;
}
.form__hint{
  margin: 0;
  color: var(--muted2);
  font-size: 13px;
}
.formStatus{
  min-height: 20px;
  color: var(--muted);
  font-size: 14px;
}
.formStatus--ok{ color: var(--ok); }
.formStatus--err{ color: var(--danger); }

.footer{
  margin-top: 24px;
  border-top: 1px solid rgba(13, 42, 69, .10);
  background: rgba(255,255,255,.85);
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 0;
  align-items: center;
  flex-wrap: wrap;
}
.footer__brand{ font-weight: 900; letter-spacing: .2px; }
.footer__contact{
  color: var(--muted);
  margin-top: 4px;
}
.dot{ margin: 0 8px; color: rgba(13, 42, 69, .25); }
.footer__links{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items:center;
  color: var(--brand2);
}
.linkLike{
  appearance:none;
  border: none;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.linkLike:focus{ outline:none; box-shadow: var(--focus); border-radius: 8px; }

.cookieBanner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 14px;
}
.cookieBanner__inner{
  max-width: var(--container);
  margin: 0 auto;
  display:flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(13, 42, 69, .14);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.cookieBanner__title{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 2px;
}
.cookieBanner__text{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 66ch;
}
.cookieBanner__actions{ display:flex; gap: 8px; flex-wrap: wrap; }

dialog{
  border: none;
  padding: 0;
  background: transparent;
}
dialog::backdrop{
  background: rgba(13, 42, 69, .25);
}
.cookieModal__inner{
  width: min(720px, calc(100vw - 20px));
  margin: 10vh auto;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(13, 42, 69, .14);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cookieModal__header{
  display:flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid rgba(13, 42, 69, .10);
}
.cookieModal__title{ font-weight: 900; letter-spacing: .2px; }
.cookieModal__subtitle{ color: var(--muted); font-size: 13px; margin-top: 2px; }
.iconBtn{
  appearance:none;
  border: 1px solid rgba(13, 42, 69, .16);
  background: var(--surface2);
  color: var(--brand);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
}
.iconBtn:focus{ outline:none; box-shadow: var(--focus); }

.cookieModal__body{ padding: 16px; display:grid; gap: 10px; }
.cookieRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(13, 42, 69, .12);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
}
.cookieRow__name{ font-weight: 800; }
.cookieRow__desc{ color: var(--muted); font-size: 13px; margin-top: 2px; }
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(13, 42, 69, .14);
  font-size: 12px;
  background: var(--surface2);
  white-space: nowrap;
}
.pill--on{
  background: rgba(14, 165, 164, .12);
  border-color: rgba(14, 165, 164, .35);
  color: rgba(11, 31, 51, .92);
}
.switch{
  display:flex;
  align-items:center;
  gap: 8px;
  user-select: none;
}
.switch input{ position:absolute; opacity:0; pointer-events:none; }
.switch__ui{
  width: 44px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(13, 42, 69, .16);
  background: rgba(13, 42, 69, .08);
  position: relative;
}
.switch__ui::after{
  content:"";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.98);
  position:absolute;
  top: 2px;
  left: 2px;
  transition: transform .16s ease, background .16s ease;
}
.switch input:checked + .switch__ui{
  background: rgba(13, 42, 69, .18);
  border-color: rgba(13, 42, 69, .30);
}
.switch input:checked + .switch__ui::after{
  transform: translateX(18px);
  background: rgba(255,255,255,1);
}
.switch__label{ font-size: 12px; color: var(--muted); }
.cookieModal__note{ margin: 0; color: var(--muted2); font-size: 13px; }
.cookieModal__footer{
  display:flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid rgba(13, 42, 69, .10);
}

@media (min-width: 760px){
  .chip{ display:inline-flex; }
}
@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__highlights{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 820px){
  .grid{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .footer__inner{ align-items: flex-start; }
  .socialGrid{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; transition: none !important; }
}
