:root {
  --bg: #060608;
  --panel: rgba(20, 20, 24, 0.88);
  --panel-2: rgba(255,255,255,0.04);
  --text: #f5f5f7;
  --muted: #a6a6ad;
  --red: #ff4d42;
  --green: #24d66b;
  --line: rgba(255,255,255,0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 77, 66, 0.18), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(36, 214, 107, 0.14), transparent 22%),
    linear-gradient(180deg, #090a0d 0%, #050507 100%);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(6, 6, 8, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,77,66,0.28), rgba(255,77,66,0.12));
  color: var(--red);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 10px 30px rgba(255,77,66,0.18);
}
.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.96rem;
}
.nav-links a:hover, .footer-links a:hover, .link:hover { color: var(--text); }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.cta:hover { transform: translateY(-1px); }
.cta.primary {
  background: linear-gradient(180deg, #ff5b4f 0%, #ff4d42 100%);
  box-shadow: 0 18px 40px rgba(255, 77, 66, 0.28);
}
.cta.secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: var(--text);
}
.hero {
  padding: 68px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: #d3d3d9;
  font-size: 0.92rem;
}
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.96;
  margin: 18px 0 16px;
  letter-spacing: -0.05em;
}
.subhead {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 640px;
}
.hero-copy .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.mini-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 28px;
}
.pill-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line);
}
.pill-card strong { display: block; margin-bottom: 4px; font-size: 0.98rem; }
.pill-card span { color: var(--muted); font-size: 0.92rem; }
.hero-visual {
  position: relative;
  min-height: 680px;
}
.phone-stack {
  position: relative;
  height: 100%;
}
.phone {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #15151a 0%, #0c0c10 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone.one { width: 300px; right: 0; top: 18px; transform: rotate(5deg); }
.phone.two { width: 286px; left: 12px; top: 110px; transform: rotate(-6deg); }
.phone.three { width: 250px; right: 90px; bottom: 10px; transform: rotate(-2deg); }
.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.45;
}
.glow.red { background: rgba(255,77,66,0.5); width: 240px; height: 240px; left: 0; top: 60px; }
.glow.green { background: rgba(36,214,107,0.4); width: 260px; height: 260px; right: 30px; bottom: 60px; }
.section { padding: 64px 0; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin: 0 0 8px;
}
.section p.lead { color: var(--muted); max-width: 700px; margin: 0; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.card {
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  font-size: 1.1rem;
}
.card h3 { margin: 0 0 10px; font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); }
.dark-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.shot {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0d11;
  box-shadow: var(--shadow);
}
.shot-caption {
  padding: 14px 8px 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.list-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list-card li { margin: 10px 0; }
.callout {
  border-radius: 30px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,77,66,0.12), rgba(255,255,255,0.03) 55%, rgba(36,214,107,0.08));
  border: 1px solid rgba(255,255,255,0.08);
}
.small { font-size: 0.93rem; color: var(--muted); }
.footer {
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 18px; color: var(--muted); }
.page-hero { padding: 72px 0 32px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.05em; margin: 12px 0; }
.page-content { padding: 24px 0 64px; }
.prose {
  max-width: 860px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.prose h2 { margin-top: 28px; letter-spacing: -0.03em; }
.prose h3 { margin-top: 22px; }
.prose p, .prose li { color: #d7d7de; }
.prose ul { padding-left: 20px; }
.notice {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}
.faq details {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin: 10px 0 0; }
.codeish {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(255,255,255,0.06);
  padding: 2px 7px;
  border-radius: 8px;
}
@media (max-width: 980px) {
  .hero-grid, .contact-grid, .two-col { grid-template-columns: 1fr; }
  .gallery, .grid-3 { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 560px; }
  .phone.one { width: 260px; }
  .phone.two { width: 248px; top: 120px; }
  .phone.three { width: 220px; }
}
@media (max-width: 720px) {
  .nav-inner { flex-wrap: wrap; }
  .nav-links { width: 100%; justify-content: center; }
  .gallery, .grid-3, .mini-points { grid-template-columns: 1fr; }
  .hero { padding-top: 44px; }
  .hero-visual { min-height: 480px; margin-top: 10px; }
  .phone.one { width: 210px; right: 0; }
  .phone.two { width: 200px; left: 0; top: 120px; }
  .phone.three { width: 176px; right: 50px; bottom: 0; }
  .section, .page-content { padding: 44px 0; }
  .prose { padding: 24px; }
}
