:root{
  --dark:#071523;
  --blue:#0c4a6e;
  --teal:#0f766e;
  --gold:#fbbf24;
  --orange:#f97316;
  --cream:#fff7ed;
  --soft:#f1f5f9;
  --white:#ffffff;
  --muted:#64748b;
  --ink:#0f172a;
  --green:#16a34a;
  --red:#b91c1c;
  --shadow:0 22px 60px rgba(15,23,42,.18);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#fff7ed 0%,#f8fafc 45%,#eef7f4 100%);
}

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

.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  background-size:cover;
  background-position:center;
}

.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:130px;
  background:linear-gradient(to top,#fff7ed,transparent);
}

.wrap{
  width:min(1180px,92%);
  margin:auto;
  position:relative;
  z-index:2;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 0;
}

.brand{
  display:flex;
  gap:14px;
  align-items:center;
}

.logo{
  width:54px;
  height:54px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--gold),#fff);
  display:grid;
  place-items:center;
  color:#071523;
  font-size:27px;
  box-shadow:0 18px 38px rgba(0,0,0,.25);
}

.brand small{
  display:block;
  text-transform:uppercase;
  letter-spacing:.26em;
  color:#fde68a;
  font-weight:900;
  font-size:11px;
}

.brand strong{
  font-size:21px;
  font-weight:900;
}

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

.nav a{
  padding:11px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-weight:800;
  font-size:14px;
  backdrop-filter:blur(8px);
}

.nav .primary{
  background:#fbbf24;
  color:#071523;
  border:0;
  box-shadow:0 14px 30px rgba(251,191,36,.25);
}

.heroGrid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:42px;
  align-items:center;
  padding:58px 0 115px;
}

.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  padding:10px 15px;
  border-radius:999px;
  color:#fde68a;
  font-weight:900;
  margin-bottom:22px;
  backdrop-filter:blur(8px);
}

h1{
  font-size:clamp(42px,6vw,76px);
  line-height:.96;
  margin:0;
  font-weight:900;
  letter-spacing:-.055em;
  max-width:760px;
}

.lead{
  font-size:20px;
  line-height:1.75;
  color:#e5e7eb;
  max-width:700px;
  margin:24px 0 0;
}

.statRow{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:30px;
  max-width:720px;
}

.stat{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:24px;
  padding:18px;
  backdrop-filter:blur(10px);
}

.stat span{
  display:block;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#cbd5e1;
  font-weight:900;
  margin-bottom:8px;
}

.stat b{
  font-size:19px;
}

.heroBtns{
  display:flex;
  gap:13px;
  flex-wrap:wrap;
  margin-top:32px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 22px;
  border-radius:999px;
  font-weight:900;
  border:0;
  cursor:pointer;
}

.btn.gold{
  background:var(--gold);
  color:#071523;
  box-shadow:0 18px 35px rgba(251,191,36,.28);
}

.btn.ghost{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
}

.darkBtn{
  background:#071523;
  color:#fff;
}

.featureCard{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.1);
  padding:14px;
  border-radius:34px;
  box-shadow:0 28px 80px rgba(0,0,0,.28);
  backdrop-filter:blur(12px);
}

.innerFeature{
  background:rgba(7,21,35,.88);
  border-radius:25px;
  padding:18px;
}

.photoBox{
  height:240px;
  border-radius:22px;
  background:
    linear-gradient(135deg,rgba(251,191,36,.55),rgba(15,118,110,.55)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80');
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
}

.photoBox div{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.95);
  color:#071523;
  border-radius:18px;
  padding:16px;
  line-height:1.5;
}

.photoBox b{
  font-size:24px;
}

.miniGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
  margin-top:13px;
}

.mini{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:17px;
}

.mini b{
  display:block;
  margin-bottom:7px;
}

.mini p{
  margin:0;
  color:#cbd5e1;
  font-size:13px;
  line-height:1.5;
}

.tabs{
  margin-top:-58px;
  position:relative;
  z-index:3;
}

.tabCard{
  background:#fff;
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:14px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.tabCard div{
  padding:18px;
  border-radius:22px;
  background:#f1f5f9;
  font-weight:900;
}

.tabCard .active{
  background:#071523;
  color:#fff;
}

.section{
  padding:44px 0;
}

.layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:28px;
}

.card,
.messageHub,
.producerDirectory,
.statsPanel{
  background:#fff;
  border-radius:32px;
  box-shadow:0 18px 45px rgba(15,23,42,.10);
  padding:28px;
  border:1px solid #e2e8f0;
  margin-bottom:28px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:12px;
  color:#ea580c;
  font-weight:900;
  margin:0 0 9px;
}

.goldText{
  color:#fbbf24 !important;
}

h2{
  font-size:clamp(30px,4vw,46px);
  line-height:1.05;
  margin:0 0 14px;
  letter-spacing:-.035em;
}

.desc{
  color:#64748b;
  line-height:1.75;
  margin:0;
}

.desc.white,
.white{
  color:#dbeafe;
}

.alert{
  padding:16px 18px;
  border-radius:18px;
  margin-bottom:20px;
  font-weight:800;
}

.alert.success{
  background:#dcfce7;
  color:#166534;
  border:1px solid #86efac;
}

.alert.error{
  background:#fee2e2;
  color:#991b1b;
  border:1px solid #fecaca;
}

.stepsGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:22px;
}

.stepBox{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:22px;
}

.stepNum{
  width:42px;
  height:42px;
  border-radius:999px;
  background:#071523;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
  margin-bottom:15px;
}

.stepBox h3{
  margin:0 0 9px;
  font-size:18px;
}

.stepBox p{
  margin:0;
  color:#64748b;
  font-size:14px;
  line-height:1.62;
}

.activityGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:13px;
  margin-top:24px;
}

.activity{
  display:flex;
  gap:13px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  border-radius:20px;
  padding:16px;
  font-weight:800;
  line-height:1.45;
}

.activity small{
  display:block;
  color:#64748b;
  font-weight:600;
  margin-top:6px;
  line-height:1.5;
}

.num{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#fbbf24;
  flex:0 0 34px;
  font-weight:900;
}

.partnerGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-bottom:28px;
}

.partner{
  background:#fff;
  border-radius:26px;
  padding:22px;
  box-shadow:0 18px 45px rgba(15,23,42,.09);
  border:1px solid #e2e8f0;
}

.icon{
  font-size:31px;
  margin-bottom:18px;
}

.partner h3{
  margin:0;
  font-size:17px;
}

.partner p{
  color:#64748b;
  line-height:1.6;
  font-size:14px;
}

.partnerType{
  color:#0f766e !important;
  font-weight:900;
  margin-bottom:8px;
}

.textLink{
  display:inline-block;
  margin-top:8px;
  color:#0f766e;
  font-weight:900;
}

.formCard{
  background:linear-gradient(135deg,#071523,#0c4a6e);
  color:#fff;
  border-radius:32px;
  box-shadow:var(--shadow);
  padding:30px;
  margin-bottom:28px;
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:25px;
  align-items:center;
}

.formCard .eyebrow{
  color:#fbbf24;
}

.fakeForm{
  background:#fff;
  color:#071523;
  border-radius:25px;
  padding:18px;
}

.fakeForm label{
  display:block;
  background:#f1f5f9;
  border-radius:17px;
  padding:12px 14px;
  margin-bottom:10px;
}

.fakeForm span{
  display:block;
  color:#64748b;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.13em;
  font-weight:900;
  margin-bottom:7px;
}

.fakeForm input,
.fakeForm textarea{
  width:100%;
  border:0;
  background:transparent;
  outline:0;
  font-size:15px;
  font-weight:700;
  color:#071523;
}

.submit{
  width:100%;
  background:#fbbf24;
  border:0;
  border-radius:17px;
  padding:14px;
  font-weight:900;
  font-size:15px;
  cursor:pointer;
}

.messageGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:22px;
}

.messageCard{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:20px;
  box-shadow:0 14px 32px rgba(15,23,42,.07);
}

.messageCard .tag{
  display:inline-flex;
  border-radius:999px;
  background:#ecfeff;
  color:#0f766e;
  padding:7px 10px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:900;
  margin-bottom:14px;
}

.messageCard h3{
  margin:0 0 8px;
  font-size:19px;
}

.messagePreview{
  background:#f8fafc;
  border:1px dashed #cbd5e1;
  border-radius:17px;
  padding:14px;
  color:#334155;
  font-size:13px;
  line-height:1.55;
}

.materialStrip{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.material{
  background:#071523;
  color:#fff;
  border-radius:20px;
  padding:17px;
}

.material b{
  display:block;
  margin-bottom:6px;
}

.material span{
  color:#cbd5e1;
  font-size:13px;
  line-height:1.45;
}

.producerDirectory{
  background:linear-gradient(135deg,#fff7ed,#ffffff);
  border:1px solid #fed7aa;
}

.producerGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:20px;
}

.producerFeature{
  border-radius:26px;
  background:#071523;
  color:#fff;
  padding:24px;
  min-height:240px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background-image:
    linear-gradient(135deg,rgba(7,21,35,.92),rgba(15,118,110,.82)),
    url('https://images.unsplash.com/photo-1606813907291-d86efa9b94db?auto=format&fit=crop&w=1000&q=80');
  background-size:cover;
  background-position:center;
}

.producerFeature h3{
  font-size:30px;
  margin:0 0 10px;
}

.producerFeature p{
  color:#e2e8f0;
  line-height:1.6;
}

.producerPlan{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:26px;
  padding:24px;
}

.producerPlan h3{
  font-size:26px;
  margin:0 0 10px;
}

.producerPlan p{
  color:#64748b;
  line-height:1.65;
}

.producerPrice{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:16px 0;
}

.producerPrice div{
  background:#f8fafc;
  border-radius:18px;
  padding:15px;
}

.producerPrice span{
  display:block;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:11px;
  font-weight:900;
}

.producerPrice b{
  font-size:22px;
}

.producerList{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:18px;
}

.producerCard{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:22px;
  padding:18px;
  display:block;
  transition:.2s ease;
}

.producerCard:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 35px rgba(15,23,42,.12);
}

.producerThumb{
  height:95px;
  border-radius:16px;
  background:
    linear-gradient(135deg,rgba(251,191,36,.8),rgba(15,118,110,.8)),
    url('https://images.unsplash.com/photo-1606813907291-d86efa9b94db?auto=format&fit=crop&w=1000&q=80');
  background-size:cover;
  background-position:center;
  margin-bottom:13px;
}

.producerCard h4{
  margin:0 0 6px;
}

.producerCard p{
  margin:0;
  color:#64748b;
  font-size:13px;
  line-height:1.5;
}

.listingType{
  display:inline-flex;
  margin-top:12px;
  background:#ecfeff;
  color:#0f766e;
  padding:7px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.revenueModel{
  margin-bottom:28px;
  border-radius:32px;
  background:linear-gradient(135deg,#071523,#0c4a6e);
  color:#fff;
  padding:30px;
  box-shadow:var(--shadow);
}

.revenueGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:22px;
}

.revenueCard{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  border-radius:24px;
  padding:22px;
}

.revenueCard strong{
  display:block;
  font-size:30px;
  margin-bottom:8px;
  color:#fbbf24;
}

.revenueCard h3{
  margin:0 0 10px;
  font-size:20px;
}

.revenueCard p{
  margin:0;
  color:#dbeafe;
  line-height:1.62;
  font-size:14px;
}

.pricingTable{
  margin-top:20px;
  background:#fff;
  color:#071523;
  border-radius:24px;
  overflow:hidden;
}

.pricingTable table{
  width:100%;
  border-collapse:collapse;
}

.pricingTable th{
  background:#fbbf24;
  text-align:left;
  padding:14px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.pricingTable td{
  padding:14px;
  border-bottom:1px solid #e2e8f0;
  font-weight:700;
}

.statCards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:20px;
}

.miniStat{
  border-radius:22px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  padding:18px;
}

.miniStat span{
  display:block;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:11px;
  color:#64748b;
  font-weight:900;
  margin-bottom:8px;
}

.miniStat b{
  font-size:24px;
  color:#071523;
}

.side{
  display:grid;
  gap:18px;
  align-self:start;
}

.ad{
  min-height:250px;
  border-radius:28px;
  background:linear-gradient(135deg,#0f766e,#071523);
  color:#fff;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 18px 45px rgba(15,23,42,.13);
}

.ad:nth-child(2){
  background:linear-gradient(135deg,#ea580c,#071523);
}

.ad small{
  text-transform:uppercase;
  letter-spacing:.17em;
  color:#fcd34d;
  font-weight:900;
}

.ad h3{
  font-size:27px;
  line-height:1.05;
  margin:0;
}

.ad p{
  color:#dbeafe;
  line-height:1.6;
}

.sponsorBox{
  background:linear-gradient(135deg,#f97316,#fbbf24);
  color:#071523;
  border-radius:28px;
  padding:24px;
  box-shadow:0 18px 45px rgba(15,23,42,.13);
}

.sponsorBox h3{
  font-size:28px;
  margin:12px 0 8px;
}

.sponsorBox p{
  font-weight:700;
  line-height:1.65;
}

.star{
  font-size:34px;
}

.sponsorList{
  background:#fff;
  border-radius:28px;
  padding:22px;
  box-shadow:0 18px 45px rgba(15,23,42,.10);
}

.sponsorItem{
  display:block;
  padding:15px;
  border:1px solid #e2e8f0;
  border-radius:18px;
  margin-top:10px;
  font-weight:900;
  color:#334155;
}

.sponsorItem small{
  display:block;
  margin-top:4px;
  color:#64748b;
  font-weight:700;
}

.footer{
  background:#071523;
  color:#fff;
  padding:35px 0;
  margin-top:30px;
}

.footerGrid{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}

.footer strong{
  font-size:22px;
}

.footer p{
  color:#cbd5e1;
  line-height:1.7;
  max-width:750px;
}

@media(max-width:1000px){
  .heroGrid,
  .layout,
  .formCard{
    grid-template-columns:1fr;
  }

  .nav{
    display:none;
  }

  .partnerGrid,
  .stepsGrid,
  .materialStrip,
  .statCards{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:760px){
  .statRow,
  .miniGrid,
  .activityGrid,
  .messageGrid,
  .producerGrid,
  .producerList,
  .revenueGrid{
    grid-template-columns:1fr;
  }

  .tabCard{
    grid-template-columns:1fr;
  }

  .pricingTable{
    overflow-x:auto;
  }

  .pricingTable table{
    min-width:700px;
  }

  .footerGrid{
    display:block;
  }

  .footer .btn{
    margin-top:15px;
  }
}

@media(max-width:560px){
  .partnerGrid,
  .stepsGrid,
  .materialStrip,
  .statCards{
    grid-template-columns:1fr;
  }

  h1{
    font-size:42px;
  }

  .card,
  .messageHub,
  .producerDirectory,
  .statsPanel,
  .revenueModel{
    padding:22px;
  }
}