:root{
  --bg:#000;
  --fg:#fff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.56);
  --line:rgba(255,255,255,.16);
  --panel:rgba(255,255,255,.04);
  --panel2:rgba(255,255,255,.028);

  --radius:14px;
  --shadow:0 26px 90px rgba(0,0,0,.70);

  --max:1120px;
  --padX:clamp(20px, 4vw, 38px);

  --head:Arial, Helvetica, sans-serif;
  --body:Arial, Helvetica, sans-serif;
  --mono:Arial, Helvetica, sans-serif;

  --h1:clamp(38px, 6vw, 76px);
  --p:16px;
}

*{ box-sizing:border-box; }

html,
body{
  min-height:100%;
}

body{
  margin:0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(800px 520px at 85% 20%, rgba(255,255,255,.05), transparent 62%),
    var(--bg);
  color:var(--fg);
  font-family:var(--body);
  line-height:1.48;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
}

a{
  color:var(--fg);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.35);
}

a:hover{
  border-bottom-color:rgba(255,255,255,.78);
}

a:focus-visible{
  outline:2px solid rgba(255,255,255,.6);
  outline-offset:3px;
  border-bottom-color:transparent;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:56px var(--padX) 88px;
  display:grid;
  gap:22px;
  align-content:start;
  min-height:100vh;
}

header{
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:start;
  padding-bottom:16px;
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-width:0;
  border-bottom:0;
}

.brand:hover{
  border-bottom:0;
}

.brand-logo{
  width:34px;
  height:34px;
  object-fit:contain;
  display:block;
  flex:0 0 auto;
  margin-top:1px;
  opacity:.94;
}

.brandtext{
  display:grid;
  gap:6px;
  min-width:0;
}

.name{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  font-weight:800;
  opacity:.92;
}

.tagline{
  margin:0;
  color:var(--muted);
  font-size:15px;
  max-width:none;
}

.actions{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.22);
  background:transparent;
  color:var(--fg);
  font-family:var(--mono);
  font-weight:800;
  font-size:13px;
  letter-spacing:.2px;
  line-height:1.15;
  white-space:nowrap;
}

.btn.primary{
  background:#fff;
  color:#000;
  border-color:#fff;
}

.btn:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.55);
}

.btn.primary:hover{
  background:rgba(255,255,255,.86);
  color:#000;
  border-color:rgba(255,255,255,.86);
}

.hero{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
  padding:clamp(28px, 4vw, 48px);
  display:grid;
  gap:14px;
}

.eyebrow,
.kicker{
  margin:0;
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:rgba(255,255,255,.80);
  font-weight:900;
}

.hero h1{
  margin:0;
  font-family:var(--head);
  font-size:var(--h1);
  line-height:.98;
  font-weight:800;
  letter-spacing:-.035em;
  max-width:18ch;
  text-wrap:balance;
  position:relative;
  z-index:1;
}

.hero p{
  margin:0;
  color:var(--muted);
  font-size:clamp(17px, 1.45vw, 21px);
  line-height:1.45;
  max-width:72ch;
  position:relative;
  z-index:1;
}

.cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:4px;
  position:relative;
  z-index:1;
}

.section{
  padding-top:18px;
  border-top:1px solid var(--line);
  display:grid;
  gap:14px;
}

.body{
  margin:0;
  color:var(--muted2);
  font-size:var(--p);
  max-width:none;
}

.body strong{
  color:rgba(255,255,255,.88);
  font-weight:800;
}

.principle{
  margin:2px 0 0;
  color:rgba(255,255,255,.88);
  font-size:17px;
  font-weight:800;
  max-width:none;
}

ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  font-size:var(--p);
}

li{
  margin:7px 0;
}

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

.capability{
  border:1px solid var(--line);
  border-radius:12px;
  padding:14px;
  background:var(--panel2);
  display:grid;
  gap:7px;
  min-height:128px;
}

.capability h3{
  margin:0;
  font-family:var(--head);
  font-size:18px;
  line-height:1.15;
  color:rgba(255,255,255,.9);
}

.capability p{
  margin:0;
  color:var(--muted2);
  font-size:14px;
  line-height:1.45;
}

.offers{
  display:grid;
  gap:16px;
  align-items:stretch;
}

.offer{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--panel);
  padding:20px;
  display:grid;
  gap:14px;
  min-height:520px;
  align-content:start;
}

.offer-top{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}

.offer-name{
  margin:0;
  font-family:var(--head);
  font-size:24px;
  font-weight:800;
}

.offer-time{
  font-family:var(--mono);
  font-size:12px;
  color:var(--muted2);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  white-space:nowrap;
}

.lede{
  margin:0;
  color:rgba(255,255,255,.88);
  font-weight:700;
  font-size:16px;
  line-height:1.42;
}

.detail{
  margin:0;
  color:var(--muted2);
  font-size:15px;
  line-height:1.55;
  max-width:none;
}

.mini{
  margin-top:0;
  display:grid;
  gap:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.10);
}

.mini-block{
  display:grid;
  gap:6px;
}

.mini-label{
  margin:0;
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  font-weight:900;
  color:rgba(255,255,255,.78);
}

.mini-text{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.48;
}

.pain-table-wrap{
  width:100%;
  overflow-x:auto;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.025);
  -webkit-overflow-scrolling:touch;
}

.pain-table{
  width:100%;
  border-collapse:collapse;
  min-width:1120px;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.pain-table th,
.pain-table td{
  padding:14px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
  text-align:left;
}

.pain-table th{
  color:rgba(255,255,255,.9);
  font-size:12px;
  letter-spacing:1.3px;
  text-transform:uppercase;
  font-weight:900;
  background:rgba(255,255,255,.035);
  white-space:nowrap;
}

.pain-table tr:last-child td{
  border-bottom:0;
}

.pain-table strong{
  color:rgba(255,255,255,.9);
  font-weight:800;
}

.pain-table .fee{
  color:rgba(255,255,255,.86);
  font-weight:900;
  white-space:nowrap;
}

.note,
.fineprint{
  color:rgba(255,255,255,.46);
  font-size:12px;
  line-height:1.45;
  font-family:var(--mono);
}

footer{
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px 18px;
  color:rgba(255,255,255,.46);
  font-size:12px;
  font-family:var(--mono);
}

code{
  color:rgba(255,255,255,.70);
  font-family:var(--mono);
  font-size:12px;
}

@media (min-width:980px){
  .offers{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    grid-auto-rows:1fr;
    gap:16px;
  }

  .offer{
    height:100%;
    grid-template-rows:48px 86px 165px 1fr;
  }

  .mini{
    align-self:stretch;
    grid-template-rows:132px 1fr;
  }

  .mini-block:first-child{
    min-height:132px;
  }
}

@media (min-width:980px) and (max-width:1080px){
  .offer{
    grid-template-rows:48px 104px 205px 1fr;
    min-height:610px;
  }

  .mini{
    grid-template-rows:150px 1fr;
  }

  .mini-block:first-child{
    min-height:150px;
  }
}

@media (max-width:980px){
  .capabilities{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:780px){
  html,
  body{
    background:#000 !important;
    background-image:none !important;
  }

  .wrap{
    padding-top:34px;
  }

  header{
    grid-template-columns:1fr;
  }

  .actions{
    justify-content:flex-start;
  }

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

  .hero,
  .offer{
    background:#000 !important;
    background-image:none !important;
    box-shadow:none !important;
    filter:none !important;
    border-color:rgba(255,255,255,.16) !important;
  }

  .hero h1{
    font-size:clamp(38px, 12vw, 56px);
    line-height:1;
    letter-spacing:-.03em;
    max-width:14ch;
  }

  .hero p{
    font-size:16px;
  }

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

  .capability,
  .offer{
    min-height:0;
  }

  .btn{
    white-space:normal;
    text-align:center;
  }

  .pain-table{
    min-width:980px;
  }
}

@supports (-webkit-touch-callout:none){
  #offers{
    background-color:#000 !important;
    background-image:none !important;
  }

  #offers .offer{
    background-color:#0a0a0a !important;
    background-image:none !important;
    box-shadow:none !important;
    filter:none !important;
    -webkit-backdrop-filter:none !important;
    backdrop-filter:none !important;
  }
} 
