:root {
  color-scheme: dark;
  --bg: #090805;
  --bg-2: #11100b;
  --panel: #17140d;
  --panel-2: #211d13;
  --ink: #fff8dc;
  --text: #f7efcf;
  --muted: #c8bc91;
  --yellow: #ffd32a;
  --yellow-2: #ffe27a;
  --red: #e13d35;
  --line: rgba(255, 211, 42, 0.26);
  --line-strong: rgba(255, 211, 42, 0.62);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --max: 1180px;
  --radius: 8px;
  --header: 76px;
  --display: "Arial Black", Impact, Haettenschweiler, Arial, sans-serif;
  --body:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 211, 42, 0.05) 0 25%,
      transparent 25% 50%,
      rgba(225, 61, 53, 0.035) 50% 75%,
      transparent 75%
    ),
    var(--bg);
  background-size: 88px 88px;
  color: var(--text);
  font-family: var(--body);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 211, 42, 0.08), transparent 420px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03),
      transparent 34%,
      rgba(255, 211, 42, 0.04) 65%,
      transparent
    );
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  background: var(--yellow);
  color: #080703;
}

:focus-visible {
  outline: 3px solid var(--yellow-2);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  border: 2px solid #000;
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--yellow);
  color: #080703;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header);
  border-bottom: 1px solid rgba(255, 211, 42, 0.24);
  background: rgba(9, 8, 5, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background: #000;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.75);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.nav-menu a,
.footer-links a {
  border-radius: 6px;
  padding: 6px 2px;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--yellow);
}

.nav-cta,
.button,
.copy-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 0 18px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.nav-cta,
.button-primary,
.copy-button {
  background: var(--yellow);
  color: #080703;
  box-shadow: 4px 4px 0 #000;
}

.button-secondary {
  background: #080703;
  color: var(--yellow);
  box-shadow: 4px 4px 0 rgba(255, 211, 42, 0.3);
}

.nav-cta:hover,
.button:hover,
.copy-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #000;
}

.nav-toggle {
  width: 46px;
  height: 42px;
  display: none;
  flex-shrink: 0;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  background: #070604;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--yellow);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 211, 42, 0.28);
  padding: 18px 16px 18px;
}

.hero::after {
  content: "BRO-KER";
  position: absolute;
  right: -18px;
  bottom: 4px;
  z-index: -1;
  color: rgba(255, 211, 42, 0.06);
  font-family: var(--display);
  font-size: 9rem;
  line-height: 0.8;
  text-transform: uppercase;
}

.hero-grid {
  width: min(var(--max), 100%);
  min-height: clamp(500px, calc(100svh - var(--header) - 170px), 700px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow-dark {
  border-color: rgba(0, 0, 0, 0.44);
  background: rgba(0, 0, 0, 0.08);
  color: #191204;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 600px;
  margin-top: 10px;
  color: var(--yellow);
  font-size: clamp(6.8rem, 9.8vw, 10.2rem);
  line-height: 0.72;
  text-shadow: 4px 4px 0 #000;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  max-width: 620px;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bot-link {
  width: min(100%, 620px);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: var(--shadow);
}

.bot-link div {
  min-width: 0;
  flex: 1;
}

.bot-link span,
.panel-kicker,
.feature-number {
  display: block;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bot-link code {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-status {
  min-height: 1.4em;
  margin-top: 4px;
  color: var(--yellow-2);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-proof {
  width: min(100%, 620px);
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
}

.hero-proof li {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 211, 42, 0.35);
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(255, 211, 42, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.hero-visual {
  position: relative;
  min-width: 0;
  justify-self: end;
}

.broker-portrait {
  width: min(100%, 420px);
  aspect-ratio: 1 / 1.04;
  border: 3px solid var(--yellow);
  border-radius: var(--radius);
  background: #000;
  object-fit: cover;
  object-position: center;
  box-shadow:
    10px 10px 0 var(--yellow),
    var(--shadow);
}

.product-panel {
  position: absolute;
  right: -14px;
  bottom: -90px;
  width: min(310px, 82%);
  margin: 0;
  border: 2px solid #000;
  border-radius: var(--radius);
  padding: 16px;
  background: var(--yellow);
  color: #11100b;
  box-shadow: 8px 8px 0 #000;
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  border: 2px solid #000;
  border-radius: 4px;
  padding: 6px 12px;
  background: var(--yellow);
  color: #080703;
  font-family: var(--display);
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 #000;
}

.sticker-quotes {
  left: -42px;
  top: 34px;
  transform: rotate(-7deg);
}

.sticker-orders {
  right: -158px;
  bottom: 112px;
  transform: rotate(8deg);
}

.product-panel .panel-kicker {
  color: #11100b;
}

.product-panel ul {
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.product-panel li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
}

.product-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.signal-strip {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
  flex-wrap: nowrap;
  overflow: hidden;
  border-bottom: 3px solid #000;
  padding: 14px 16px;
  background: var(--yellow);
  color: #100d05;
}

.signal-strip span {
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.95vw, 2.15rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section {
  padding: 86px 16px;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 211, 42, 0.04), transparent), var(--bg-2);
}

.section-light {
  background: var(--yellow);
  color: #120f06;
}

.trust-section {
  background:
    linear-gradient(135deg, rgba(255, 211, 42, 0.08), transparent 38%),
    var(--bg);
}

.section-header {
  width: min(100%, calc(100vw - 32px));
  max-width: var(--max);
  margin: 0 auto 34px;
}

.section-header.compact {
  max-width: 840px;
  text-align: center;
}

.section-header h2,
.final-cta h2 {
  max-width: 890px;
  margin-top: 16px;
  color: var(--yellow);
  font-size: 4rem;
}

.section-light .section-header h2,
.final-cta h2 {
  color: #100d05;
  text-shadow: none;
}

.section-header p:not(.eyebrow),
.final-cta p,
.community-card p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.section-light .section-header p:not(.eyebrow) {
  color: rgba(18, 15, 6, 0.78);
}

.feature-grid {
  width: min(100%, calc(100vw - 32px));
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.steps article,
.trust-list article,
.community-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

.feature-card {
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.feature-card h3 {
  margin-top: auto;
  color: var(--ink);
  font-size: 2rem;
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 650;
}

.steps {
  width: min(100%, calc(100vw - 32px));
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  border-color: rgba(0, 0, 0, 0.2);
  padding: 24px;
  background: #0d0b05;
  color: var(--ink);
}

.steps span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
}

.steps h3 {
  margin-top: auto;
  color: var(--yellow);
  font-size: 2rem;
}

.steps p {
  margin-top: 12px;
  color: var(--text);
  font-weight: 650;
}

.trust-layout {
  width: min(100%, calc(100vw - 32px));
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: start;
}

.trust-layout > *,
.feature-grid > *,
.steps > * {
  min-width: 0;
}

.trust-copy {
  margin: 0;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list article {
  padding: 22px;
  background: var(--panel-2);
}

.trust-list h3 {
  color: var(--yellow);
  font-size: 1.55rem;
}

.trust-list p {
  margin-top: 10px;
  color: var(--text);
  font-weight: 650;
}

.faq-list {
  width: min(100%, calc(100vw - 32px));
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  border-top: 1px solid var(--line);
  padding: 0 20px 20px;
  color: var(--muted);
  font-weight: 650;
}

.community-section {
  background: var(--bg);
}

.community-card {
  width: min(100%, calc(100vw - 32px));
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
  text-align: center;
}

.community-card img {
  width: 128px;
  height: 128px;
  margin: 0 auto 18px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  object-fit: cover;
}

.community-card .eyebrow {
  margin-inline: auto;
}

.community-card h2 {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--yellow);
  font-size: 4rem;
}

.community-card p:not(.eyebrow) {
  margin-inline: auto;
}

.social-links {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.final-cta {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 2px solid #000;
  border-radius: var(--radius);
  padding: 32px;
  background: var(--yellow);
  color: #100d05;
  box-shadow: 10px 10px 0 #000;
}

.final-cta p {
  color: rgba(16, 13, 5, 0.78);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 16px;
  background: #060503;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

@media (max-width: 1080px) {
  .nav-menu {
    gap: 14px;
    font-size: 0.82rem;
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(720px, 100%);
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    justify-self: start;
  }

  .broker-portrait {
    width: 220px;
    aspect-ratio: 1;
  }

  .product-panel {
    position: static;
    width: 100%;
  }

  .hero-sticker {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 70px;
  }

  .nav {
    width: min(100% - 24px, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--header) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 2px solid var(--yellow);
    border-radius: var(--radius);
    padding: 12px;
    background: #080703;
    box-shadow: 8px 8px 0 var(--yellow);
  }

  .nav-menu a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 12px;
    color: var(--ink);
  }

  body.nav-open .nav-menu {
    display: flex;
  }

  .hero {
    padding: 36px 12px 38px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero h1 {
    font-size: 4rem;
    line-height: 0.82;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions,
  .social-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .nav-cta,
  .copy-button {
    width: 100%;
  }

  .bot-link {
    align-items: stretch;
    flex-direction: column;
  }

  .bot-link code {
    white-space: normal;
    word-break: break-word;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-panel {
    width: 100%;
    margin: 0;
  }

  .signal-strip {
    justify-content: flex-start;
  }

  .signal-strip span {
    border: 2px solid rgba(0, 0, 0, 0.22);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.22);
    font-family: var(--body);
    font-size: 0.84rem;
    line-height: 1.2;
  }

  .section {
    padding: 64px 12px;
  }

  .section-header h2,
  .community-card h2,
  .final-cta h2 {
    font-size: 3rem;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .steps article {
    min-height: 210px;
  }

  .community-card {
    padding: 28px 16px;
  }

  .final-cta,
  .footer-inner {
    display: grid;
    text-align: center;
  }

  .final-cta {
    width: min(100% - 24px, var(--max));
    margin-bottom: 64px;
    padding: 24px;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 460px) {
  .brand {
    font-size: 1.28rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero::after {
    display: none;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    display: none;
  }

  .broker-portrait {
    width: min(100%, 260px);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .community-card h2,
  .final-cta h2 {
    font-size: 2.2rem;
    overflow-wrap: anywhere;
  }

  .broker-portrait {
    box-shadow:
      6px 6px 0 var(--yellow),
      var(--shadow);
  }

  .button,
  .copy-button,
  .community-card,
  .final-cta,
  .feature-card,
  .steps article,
  .trust-list article,
  .faq-list details {
    box-shadow: none;
  }
}

@media (min-width: 1440px) {
  .hero h1 {
    font-size: 6.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
