:root {
  --bg: #050505;
  --panel: #111111;
  --panel-2: #171717;
  --text: #f5f1ea;
  --muted: #ccbfb4;
  --accent: #f76a3b;
  --accent-2: #ff9a6a;
  --line: rgba(247, 106, 59, 0.22);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(247, 106, 59, 0.12), transparent 28%),
    linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(5,5,5,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}
.brand { display: flex; align-items: center; gap: .9rem; color: var(--text); }
.brand-badge {
  width: 48px; height: 48px; border-radius: 14px; overflow: hidden; background: #000;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.08);
}
.brand-text strong { display: block; font-size: 1rem; letter-spacing: .04em; }
.brand-text span { display: block; color: var(--muted); font-size: .86rem; margin-top: .15rem; }
.nav-links { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--text); font-size: .95rem; }
.nav-links a:hover { color: var(--accent); }
.hero { padding: 4.25rem 0 2.5rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: .55rem; padding: .5rem .85rem;
  border-radius: 999px; background: rgba(247, 106, 59, 0.12); border: 1px solid var(--line);
  color: #ffd3c5; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em;
}
.hero h1 { margin: 1rem 0 1rem; font-size: clamp(2.5rem, 4vw, 4.7rem); line-height: .94; letter-spacing: -.04em; }
.hero p { margin: 0 0 1rem; font-size: 1.06rem; line-height: 1.7; color: var(--muted); max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.75rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px;
  padding: .8rem 1.15rem; border-radius: 999px; font-weight: 700; border: 1px solid transparent;
  transition: transform .2s ease, color .2s ease, border-color .2s ease;
}
.button-primary { background: linear-gradient(135deg, var(--accent), #ff8d63); color: #130804; box-shadow: 0 10px 30px rgba(247,106,59,0.25); }
.button-primary:hover { color: #130804; transform: translateY(-1px); }
.button-secondary { background: rgba(255,255,255,.03); color: var(--text); border-color: rgba(255,255,255,.14); }
.button-secondary:hover { color: var(--accent-2); border-color: var(--line); }
.static-pill { cursor: default; }
.hero-card {
  position: relative; padding: 0.5rem; border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); overflow: hidden;
}
.hero-card::after {
  content: ""; position: absolute; inset: auto -15% -35% auto; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(247,106,59,.18), transparent 70%); pointer-events: none;
}
.hero-logo { border-radius: 22px; background: #000; padding: 0.5rem; display: flex; align-items: center; justify-content: center; min-height: 460px; }
.hero-logo img { width: 92%; max-width: 520px; height: auto; object-fit: contain; }
.banner-wrap { margin-top: 1rem; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.section { padding: 2rem 0 1rem; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.section-header h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-header p { margin: 0; color: var(--muted); max-width: 60ch; line-height: 1.65; }
.feature-card {
  display: grid; grid-template-columns: minmax(240px, 32%) 1fr; gap: 1.75rem; align-items: center;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 0.5rem;
  box-shadow: var(--shadow); margin-bottom: 1.4rem;
}
.feature-media { display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.title-banner {
  background: #050505; border-radius: var(--radius-sm); padding: .6rem .8rem;
  border: 1px solid rgba(255,255,255,.06);
}
.title-banner img { width: 100%; height: auto; object-fit: contain; }
.carousel {
  position: relative; background: #090909; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.06); aspect-ratio: 1 / 1; width: 85%; min-width: 260px; max-width: 440px;
}
.slides { position: relative; width: 100%; height: 100%; }
.slides img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .5s ease;
}
.slides img.active { opacity: 1; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 34px; height: 34px; border-radius: 999px; border: none;
  background: rgba(17,17,17,.72); color: #fff; cursor: pointer; font-size: 1rem;
}
.carousel-btn:hover { background: rgba(247,106,59,.85); color: #180803; }
.carousel-btn.prev { left: .7rem; }
.carousel-btn.next { right: .7rem; }
.dots {
  position: absolute; left: 50%; bottom: .85rem; transform: translateX(-50%); z-index: 3;
  display: flex; gap: .4rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.38);
  border: none; padding: 0; cursor: pointer;
}
.dot.active { background: var(--accent); box-shadow: 0 0 0 4px rgba(247,106,59,.12); }
.feature-copy { padding: .4rem .25rem; }
.tag {
  display: inline-block; padding: .42rem .72rem; border-radius: 999px; background: rgba(247,106,59,.12);
  border: 1px solid var(--line); color: #ffd3c5; font-size: .73rem; text-transform: uppercase; letter-spacing: .05em;
}
.feature-copy h3 { margin: .95rem 0 .85rem; font-size: 2.1rem; }
.feature-copy p { color: var(--muted); line-height: 1.75; margin: 0 0 1rem; }
.card-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem; }
.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.panel {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
.accent-panel { background: linear-gradient(180deg, #1a130f, #171717); }
.panel h3 { margin-top: 0; font-size: 1.35rem; }
.panel p, .panel li { color: var(--muted); line-height: 1.75; }
.panel ul { margin: 0; padding-left: 1.2rem; }
.social-grid { display: grid; grid-template-columns: repeat(8, minmax(0,1fr)); gap: 1rem; }
.social-link {
  display: flex; align-items: center; justify-content: center; min-height: 84px; padding: .9rem;
  border-radius: 20px; background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(255,255,255,.07); box-shadow: var(--shadow);
}
.social-link:hover { transform: translateY(-2px); border-color: var(--line); }
.social-link img { width: 60px; height: 60px; object-fit: contain; }
.site-footer { padding: 2rem 0 3rem; }
.footer-box {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; align-items: center;
  padding: 1.2rem 1.35rem; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted);
}
@media (max-width: 980px) {
  .hero-grid, .two-up, .feature-card { grid-template-columns: 1fr; }
  .feature-media { align-items: center; }
  .carousel { width: min(100%, 420px); }
  .social-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .nav { min-height: auto; padding: 1rem 0; align-items: flex-start; flex-direction: column; }
  .hero { padding-top: 2.5rem; }
  .section-header { align-items: flex-start; flex-direction: column; }
  .social-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .carousel-btn { width: 32px; height: 32px; }
}
@media (max-width: 480px) {
  .hero-actions, .card-actions { flex-direction: column; }
  .button { width: 100%; }
  .social-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
