:root{
  --bg: #ffffff;
  --text: #0b1020;
  --muted: #4b5563;
  --alt: #fbfbfd;
  --border: rgba(11, 16, 32, .10);
  --shadow: 0 18px 40px rgba(11, 16, 32, .10);
  --accent: #dc2626;
  --accent2:#f97316;
  --ink: #111827;
  --radius: 18px;
  --header-offset: 86px;
}
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.55;
}
.section{ scroll-margin-top: var(--header-offset); }
.container{
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
}
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: flex-start;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
  min-width: 0;
}
.brand__logo{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(220,38,38,.25);
  border-radius: 14px;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(249,115,22,.20), transparent 55%),
    radial-gradient(120% 120% at 80% 90%, rgba(220,38,38,.18), transparent 55%),
    linear-gradient(180deg, #fff, #fff7ed);
  color: var(--accent);
  box-shadow: 0 14px 30px rgba(220, 38, 38, .12);
  flex: 0 0 auto;
}
.brand__text{ min-width:0; }
.brand__name{ font-weight: 900; letter-spacing: -.02em; }
.brand__tagline{ display:block; font-size: 12px; color: var(--muted); margin-top: -2px; }
.hero{
  position: relative;
  overflow:hidden;
  padding: 58px 0 38px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1fr;
  align-items: start;
}
.hero__content h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.hero__content p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__bg{
  position:absolute;
  inset: -160px -140px auto -140px;
  height: 480px;
  background:
    radial-gradient(closest-side at 20% 20%, rgba(220,38,38,.18), transparent 70%),
    radial-gradient(closest-side at 70% 10%, rgba(249,115,22,.18), transparent 70%),
    radial-gradient(closest-side at 80% 70%, rgba(49,46,129,.12), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}
.section{ padding: 58px 0; }
.section--alt{
  background: linear-gradient(180deg, #fff, var(--alt));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.footer{
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content: flex-start;
  color: var(--muted);
  font-size: 13px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(220,38,38,.35);
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 900;
  text-decoration:none;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
  box-shadow: 0 14px 28px rgba(220,38,38,.18);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); opacity: .95; }
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 720px){
  :root{ --header-offset: 66px; }
  .container{ width: min(1100px, calc(100% - 28px)); }
  .header__inner{ padding: 8px 0; }
  .brand{ gap: 10px; }
  .brand__logo{ width:36px; height:36px; border-radius: 12px; }
  .brand__tagline{ display:none; }
}
