/* =====================================================================
   Major League Futsal — placeholder site
   Single stylesheet. Rebrand = edit the tokens in :root below.
   ===================================================================== */

:root {
  /* Brand palette — light theme. Hero stays dark/immersive; rest is light. */
  --bg:        #FFFFFF;
  --bg-2:      #F5F7FB;   /* alt sections / footer */
  --bg-3:      #ECF1F7;   /* hover surfaces / placeholders */
  --surface:   #FFFFFF;   /* cards (white + border + soft shadow) */
  --ink:       #101723;   /* near-black text */
  --ink-soft:  #44505F;
  --muted:     #6E7A89;
  --line:      rgba(16, 23, 35, .12);
  --line-soft: rgba(16, 23, 35, .07);

  --orange:    #F26A12;   /* deepened slightly for contrast on white */
  --orange-2:  #FF8A33;
  --blue:      #0E7CDE;
  --cyan:      #1FA8FF;

  /* dark tokens reserved for the immersive hero / cta image bands */
  --dark:      #080B11;

  --grad-accent: linear-gradient(100deg, var(--orange) 0%, #E85C00 100%);
  --grad-cool:   linear-gradient(120deg, var(--cyan), var(--blue));

  --shadow-sm: 0 4px 14px -6px rgba(16, 23, 35, .14);
  --shadow-md: 0 18px 40px -22px rgba(16, 23, 35, .28);

  --radius:    14px;
  --radius-sm: 10px;
  --maxw:      1240px;
  --gutter:    clamp(20px, 5vw, 56px);

  --ff-display: "Sora", "Helvetica Neue", Arial, sans-serif;
  --ff-body:    "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}

p { margin: 0 0 1.1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}

.lead { font-size: clamp(18px, 2.1vw, 21px); color: var(--ink); }

/* ------------------------------------------------------------------ buttons */
.btn {
  --btn-bg: var(--grad-accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: 100px;
  border: 0;
  cursor: pointer;
  background: var(--btn-bg);
  color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  box-shadow: 0 10px 30px -10px rgba(255, 122, 26, .55);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -10px rgba(255, 122, 26, .7); }
.btn svg { width: 17px; height: 17px; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .25); box-shadow: none; }

.btn--block { width: 100%; justify-content: center; }

/* ------------------------------------------------------------------ header / nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}
.nav__group { display: flex; align-items: center; gap: 28px; }
.nav__group--right { justify-content: flex-end; }

.nav__link {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--grad-accent); border-radius: 2px;
  transition: width .25s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }

/* center logo */
.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; gap: 4px; }
.brand__mark {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .04em;
  color: var(--ink);
  white-space: nowrap;
}
.brand__mark sup { font-size: .5em; top: -.7em; }
.brand__tag {
  font-size: 9.5px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--orange); font-family: var(--ff-display); font-weight: 600;
}
.brand__logo { display: block; height: 40px; width: auto; }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown__toggle { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer; font: inherit; }
.dropdown__toggle svg { width: 11px; height: 11px; transition: transform .25s; }
.has-dropdown:hover .dropdown__toggle svg,
.has-dropdown:focus-within .dropdown__toggle svg { transform: rotate(180deg); }
.dropdown__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 200px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden;
  box-shadow: var(--shadow-md);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.has-dropdown:hover .dropdown__menu,
.has-dropdown:focus-within .dropdown__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown__menu a {
  font-family: var(--ff-display); font-size: 14px; font-weight: 500;
  color: var(--ink-soft); padding: 10px 14px; border-radius: 8px; transition: background .18s, color .18s;
}
.dropdown__menu a:hover { background: var(--bg-3); color: var(--ink); }

/* social icons */
.socials { display: flex; align-items: center; gap: 14px; }
.socials a { color: var(--muted); transition: color .2s, transform .2s; }
.socials a:hover { color: var(--ink); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.nav__group--right .socials { padding-left: 8px; margin-left: 4px; border-left: 1px solid var(--line); }

/* hamburger */
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  color: var(--ink);
}
.nav__toggle svg { width: 26px; height: 26px; }

/* ------------------------------------------------------------------ mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  padding: 30px var(--gutter) 50px;
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__head { display: flex; justify-content: flex-end; }
.mobile-menu__close { background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; }
.mobile-menu__close svg { width: 28px; height: 28px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.mobile-menu a {
  font-family: var(--ff-display); font-weight: 600; font-size: 26px;
  color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a.sub { font-size: 18px; font-weight: 500; color: var(--ink-soft); padding-left: 18px; }
.mobile-menu .socials { margin-top: 32px; }
.mobile-menu .socials svg { width: 24px; height: 24px; }

/* ------------------------------------------------------------------ hero (home) */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 860px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 11, 17, .92) 0%, rgba(8, 11, 17, .6) 42%, rgba(8, 11, 17, .25) 100%),
    linear-gradient(0deg, rgba(8, 11, 17, .95) 0%, rgba(8, 11, 17, 0) 45%);
}
.hero__inner { max-width: 760px; padding-block: 60px; color: #fff; }
.hero h1 {
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 26px;
  color: #fff;
}
.hero h1 .accent { color: transparent; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; }
.hero p { font-size: clamp(17px, 2.1vw, 20px); color: rgba(255, 255, 255, .82); max-width: 620px; }
.hero p.hero__sub { font-size: clamp(20px, 2.7vw, 26px); line-height: 1.5; color: rgba(255, 255, 255, .9); max-width: 680px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
/* ghost button sits on the dark hero/cta image bands -> keep it light there */
.hero .btn--ghost, .cta-strip .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.hero .btn--ghost:hover, .cta-strip .btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .55); }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 26px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 122, 26, .2); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ------------------------------------------------------------------ page hero (interior) */
.page-hero {
  position: relative;
  padding: clamp(64px, 11vh, 120px) 0 clamp(40px, 6vh, 64px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(120% 150% at 100% 0%, rgba(242, 106, 18, .09), transparent 52%),
    radial-gradient(120% 150% at 0% 0%, rgba(31, 168, 255, .07), transparent 50%),
    var(--bg-2);
}
.page-hero__media { display: none; }
.page-hero h1 { font-size: clamp(34px, 5.4vw, 60px); max-width: 18ch; color: var(--ink); }
.page-hero p { font-size: clamp(17px, 2.1vw, 21px); color: var(--ink-soft); max-width: 60ch; margin-top: 8px; }
.page-hero--center { padding: clamp(90px, 16vh, 170px) 0; text-align: center; }
.page-hero--center .eyebrow { justify-content: center; }
.page-hero--center h1 { max-width: none; margin-inline: auto; }
.page-hero--center p { max-width: 56ch; margin-inline: auto; }

/* ------------------------------------------------------------------ sections */
.section { padding: clamp(56px, 9vw, 112px) 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }

.prose { max-width: 760px; }
.prose p { font-size: 18px; }
.prose p + p { margin-top: 0; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.media-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.media-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 11, 17, .35));
  pointer-events: none;
}
.media-frame--tall img { aspect-ratio: 3 / 4; }

.pull { font-family: var(--ff-display); font-weight: 600; font-size: clamp(20px, 2.6vw, 26px); color: var(--ink); line-height: 1.35; letter-spacing: -.01em; }
.pull-emph { font-family: var(--ff-display); font-weight: 700; font-size: clamp(16.5px, 1.9vw, 20px); color: var(--ink); line-height: 1.45; margin-top: 6px; }
.pull-emph::before { content: ""; display: inline-block; width: 26px; height: 3px; border-radius: 3px; background: var(--grad-accent); vertical-align: middle; margin-right: 12px; transform: translateY(-3px); }

/* ------------------------------------------------------------------ feature cards (FutsalPRO) */
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.card { box-shadow: var(--shadow-sm); }
.card:hover { transform: translateY(-5px); border-color: rgba(242, 106, 18, .45); box-shadow: var(--shadow-md); }
.card__icon {
  width: 54px; height: 54px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: rgba(255, 122, 26, .12); border: 1px solid rgba(255, 122, 26, .3);
  color: var(--orange);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 {
  font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 12px;
}
.card p { font-size: 15.5px; margin: 0; }

/* ------------------------------------------------------------------ shop */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s;
}
.product { box-shadow: var(--shadow-sm); }
.product:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-md); }
.product__media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-3); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product:hover .product__media img { transform: scale(1.05); }
.product__tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--ff-display); font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255, 255, 255, .92); border: 1px solid var(--line); color: var(--ink);
  padding: 5px 11px; border-radius: 100px; backdrop-filter: blur(6px);
}
.product__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product__body h3 { font-size: 18px; margin-bottom: 6px; }
.product__body p { font-size: 14px; color: var(--muted); margin-bottom: 18px; flex: 1; }
.product .btn { margin-top: auto; }

/* placeholder image block */
.ph {
  display: grid; place-items: center; width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(16, 23, 35, .025) 0 12px, transparent 12px 24px),
    var(--bg-3);
  color: var(--muted);
}
.ph__inner { text-align: center; padding: 20px; }
.ph__inner svg { width: 34px; height: 34px; margin-bottom: 10px; opacity: .6; }
.ph__inner span { font-family: var(--ff-display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; display: block; }

/* ------------------------------------------------------------------ forms */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-display); font-size: 13px; font-weight: 500; letter-spacing: .02em; color: var(--ink-soft); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: 15.5px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: #5b6678; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 122, 26, .15);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238593A6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form-actions { margin-top: 24px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--muted); }

.info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 26px; }
.info-list li { display: flex; gap: 16px; }
.info-list .ico { flex: none; width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(31, 168, 255, .1); border: 1px solid rgba(31, 168, 255, .28); color: var(--cyan); }
.info-list .ico svg { width: 20px; height: 20px; }
.info-list h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 2px 0 5px; font-weight: 600; }
.info-list a, .info-list p { color: var(--ink); font-size: 16px; margin: 0; }
.info-list a:hover { color: var(--orange); }

/* ------------------------------------------------------------------ coming soon (media) */
.coming {
  text-align: center; max-width: 620px; margin-inline: auto;
  padding: clamp(40px, 7vw, 80px) 0;
}
.coming__icon { width: 70px; height: 70px; margin: 0 auto 26px; border-radius: 18px; display: grid; place-items: center; background: rgba(255, 122, 26, .1); border: 1px solid rgba(255, 122, 26, .3); color: var(--orange); }
.coming__icon svg { width: 34px; height: 34px; }
.subnav { display: inline-flex; gap: 6px; padding: 6px; background: var(--surface); border: 1px solid var(--line); border-radius: 100px; margin-bottom: 44px; }
.subnav a { font-family: var(--ff-display); font-size: 14px; font-weight: 500; color: var(--ink-soft); padding: 9px 20px; border-radius: 100px; transition: background .2s, color .2s; }
.subnav a[aria-current="page"] { background: var(--grad-accent); color: #fff; }

/* ------------------------------------------------------------------ news / press articles */
.article-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(32px, 5vw, 52px); text-align: left; }
.article { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.article__date { font-family: var(--ff-display); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }
.article h2 { font-size: clamp(21px, 2.6vw, 29px); margin: 12px 0 0; line-height: 1.18; }
.article__release-head { font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.article__dateline { font-weight: 600; color: var(--ink); }
.article p { font-size: 16px; margin-top: 16px; }
.article h3 { font-family: var(--ff-display); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin: 26px 0 0; }
.article__contact { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line-soft); font-size: 14.5px; color: var(--muted); }
.article__contact a { color: var(--orange); }

/* ------------------------------------------------------------------ CTA strip */
.cta-strip { position: relative; overflow: hidden; border-block: 1px solid var(--line-soft); }
.cta-strip__bg { position: absolute; inset: 0; z-index: -2; }
.cta-strip__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-strip::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8, 11, 17, .94), rgba(8, 11, 17, .7)); }
.cta-strip .container { padding-block: clamp(56px, 8vw, 96px); }
.cta-strip h2 { font-size: clamp(26px, 3.6vw, 42px); max-width: 16ch; color: #fff; }
.cta-strip p { color: rgba(255, 255, 255, .85); }

/* ------------------------------------------------------------------ footer (dark) */
.site-footer { background: #0B0F17; color: rgba(255,255,255,.72); padding-top: clamp(56px, 8vw, 84px); }
.footer-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(28px, 5vw, 60px); padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { height: 24px; width: auto; max-width: 56vw; object-fit: contain; opacity: .82; transition: opacity .25s var(--ease); }
.footer-logo:hover { opacity: 1; }
.footer-logo--wordmark { height: 13px; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.6fr; gap: 40px; padding: 50px 0; }
.footer-col h4 { font-family: var(--ff-display); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-col p { font-size: 15px; color: rgba(255,255,255,.6); }

.footer-brand .brand { align-items: flex-start; margin-bottom: 4px; }
.footer-brand .brand__logo { height: 34px; }
.footer-brand .brand__tag { display: block; margin: 12px 0 14px; }
.footer-brand p { max-width: 34ch; font-size: 14.5px; color: rgba(255,255,255,.6); }
.footer-brand .socials { margin-top: 20px; }
.footer-brand .socials a { color: rgba(255,255,255,.8); }
.footer-brand .socials a:hover { color: var(--orange); }
.footer-brand .socials svg { width: 19px; height: 19px; }

.newsletter form { display: flex; gap: 10px; margin-top: 6px; }
.newsletter input { flex: 1; min-width: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 100px; padding: 12px 18px; color: #fff; font-size: 14.5px; }
.newsletter input::placeholder { color: rgba(255,255,255,.45); }
.newsletter input:focus { outline: 0; border-color: var(--orange); }
.newsletter .btn { padding: 12px 22px; flex: none; }
.newsletter small { display: block; margin-top: 12px; font-size: 12.5px; color: rgba(255,255,255,.45); }

/* legal */
.legal { border-top: 1px solid rgba(255,255,255,.1); padding: 36px 0 44px; }
.legal__disclaimer { font-size: 12.5px; line-height: 1.7; color: rgba(255,255,255,.42); max-width: 95ch; }
.legal__disclaimer p { font-size: 12.5px; color: rgba(255,255,255,.42); margin-bottom: 10px; }
.legal__bar { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.legal__bar p { font-size: 12.5px; color: rgba(255,255,255,.5); margin: 0; max-width: 80ch; }
.legal__bar .tm { font-family: var(--ff-display); }

/* ------------------------------------------------------------------ flash / alert */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14.5px; margin-bottom: 24px; border: 1px solid; }
.alert--ok { background: rgba(31, 168, 255, .08); border-color: rgba(31, 168, 255, .35); color: var(--cyan); }
.alert--err { background: rgba(255, 90, 90, .08); border-color: rgba(255, 90, 90, .35); color: #ff8a8a; }

/* ------------------------------------------------------------------ reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------------ responsive */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 920px) {
  .nav { display: flex; align-items: center; gap: 12px; }
  .nav__group { display: none; }
  .nav__logo-wrap { flex: 1 1 auto; min-width: 0; display: flex; }
  .nav__logo-wrap .brand__logo { height: 32px; }
  .nav__toggle { display: inline-flex; flex: 0 0 auto; }
  .cards { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { margin-bottom: 8px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .nav__logo-wrap .brand__logo { height: 28px; }
  .products { grid-template-columns: 1fr; }
  .newsletter form { flex-direction: column; }
  .newsletter .btn { width: 100%; justify-content: center; }
  .legal__bar { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
