/* Marmedia LLC — corporate site styles */
:root {
  --bg: #0a0b0e;
  --bg-panel: #12141b;
  --bg-panel-2: #171a22;
  --text: #f4f5f7;
  --text-muted: #9ba1ab;
  --accent: #efff41;
  --accent-dim: #d8e830;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(239, 255, 65, 0.35);
  --radius: 16px;
  --container: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Space Grotesk", "Inter", -apple-system, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 700;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 34px; width: auto; }
.main-nav { display: none; }
.main-nav a {
  color: var(--text-muted); font-size: 15px; font-weight: 500;
  margin: 0 14px; padding: 8px 0;
}
.main-nav a:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 26px;
  background: var(--accent); color: #0a0b0e;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600; font-size: 16px;
  border: 0; border-radius: 999px; cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--accent-dim); color: #0a0b0e; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.05); color: #fff; transform: translateY(-1px); }
.btn-sm { min-height: 42px; padding: 9px 20px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(72px, 12vw, 140px) 0 clamp(56px, 9vw, 110px);
  background:
    radial-gradient(ellipse 70% 55% at 75% -10%, rgba(239, 255, 65, 0.13), transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 110%, rgba(239, 255, 65, 0.05), transparent 60%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
}
.hero .container { position: relative; }
.eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.5rem, 7.5vw, 4.4rem);
  max-width: 15ch;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent); }
.hero .lede {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-muted); max-width: 58ch; margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-note { font-size: 14px; color: var(--text-muted); }

/* ---------- Chip strip ---------- */
.chip-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.chip-strip .container {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  justify-content: center; padding-top: 18px; padding-bottom: 18px;
}
.chip {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.chip::before { content: ""; width: 7px; height: 7px; background: var(--accent); border-radius: 2px; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 10vw, 112px) 0; }
.section-alt { background: #0d0f14; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 640px; margin-bottom: clamp(36px, 6vw, 56px); }
.section-head h2 { font-size: clamp(1.85rem, 4.5vw, 2.7rem); margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card .card-num {
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent); font-size: 15px; font-weight: 700;
  letter-spacing: 0.08em; margin-bottom: 16px; display: block;
}
.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 15.5px; }

/* ---------- Split (Our Brands) ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.split-copy h2 { font-size: clamp(1.85rem, 4.5vw, 2.7rem); margin-bottom: 18px; }
.split-copy p { color: var(--text-muted); margin-bottom: 16px; }
.check-list { list-style: none; margin-top: 24px; }
.check-list li {
  position: relative; padding-left: 32px; margin-bottom: 14px;
  color: var(--text); font-weight: 500;
}
.check-list li span { display: block; font-weight: 400; color: var(--text-muted); font-size: 14.5px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 5px;
  background: var(--accent);
  clip-path: polygon(14% 44%, 0 61%, 40% 100%, 100% 16%, 84% 2%, 39% 70%);
}
.brand-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(36px, 6vw, 64px);
  display: flex; align-items: center; justify-content: center;
  background-image: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(239, 255, 65, 0.09), transparent 60%);
}
.brand-panel img { width: min(320px, 70%); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 18px; counter-reset: step; }
.step {
  border-left: 2px solid var(--border);
  padding: 4px 0 4px 26px;
  position: relative;
}
.step::before {
  content: ""; position: absolute; left: -6px; top: 10px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step h3 em { color: var(--accent); font-style: normal; margin-right: 10px; }
.step p { color: var(--text-muted); font-size: 15.5px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-panel);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--accent); font-size: 1.5rem; font-weight: 400;
  line-height: 1; transition: transform 0.2s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--text-muted); font-size: 15.5px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.contact-aside p { color: var(--text-muted); margin-bottom: 18px; }
.contact-line { display: block; margin-bottom: 10px; color: var(--text); font-weight: 500; }
.contact-line span { display: block; font-size: 13px; color: var(--text-muted); font-weight: 400; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.contact-form {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 8px; color: var(--text);
}
.form-row input, .form-row textarea {
  width: 100%; min-height: 48px;
  background: #0d0f14; color: var(--text);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; font: inherit; font-size: 16px;
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--border-strong);
}
.hidden-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 32px; background: #0d0f14; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 44px; }
.footer-brand img { height: 30px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 14.5px; max-width: 34ch; }
.footer-col h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14.5px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between;
  font-size: 13.5px; color: var(--text-muted);
}

/* ---------- Legal pages ---------- */
.legal-main { padding: clamp(48px, 8vw, 80px) 0; }
.legal-main .container { max-width: 780px; }
.legal-main h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 10px; }
.legal-meta { color: var(--text-muted); font-size: 14.5px; margin-bottom: 40px; }
.legal-main h2 { font-size: 1.35rem; margin: 40px 0 14px; }
.legal-main p, .legal-main li { color: var(--text-muted); margin-bottom: 14px; font-size: 15.5px; }
.legal-main ul { padding-left: 22px; margin-bottom: 14px; }
.legal-main strong { color: var(--text); }
.entity-box {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px; margin: 20px 0;
}
.entity-box p { margin-bottom: 4px; color: var(--text); }

/* ---------- Thanks page ---------- */
.thanks-main {
  min-height: 60vh; display: flex; align-items: center;
  padding: 80px 0; text-align: center;
}
.thanks-main .container { max-width: 620px; }
.thanks-main h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 18px; }
.thanks-main p { color: var(--text-muted); margin-bottom: 32px; }

/* ---------- Desktop ---------- */
@media (min-width: 720px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .main-nav { display: flex; align-items: center; }
  .logo-link img { height: 38px; }
  .split { grid-template-columns: 1.1fr 1fr; gap: 64px; }
  .contact-grid { grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .btn, .faq-item summary::after { transition: none; }
}
