:root {
  --bg: #080b10;
  --bg-soft: #0d1118;
  --panel: rgba(18, 23, 32, 0.78);
  --panel-solid: #111720;
  --text: #f4f6f9;
  --muted: #aab2bf;
  --line: rgba(255,255,255,.09);
  --orange: #ff7600;
  --orange-2: #ff9a28;
  --max: 1160px;
  --radius: 20px;
  color-scheme: dark;
}

* { 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 12% 18%, rgba(255,118,0,.09), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(255,118,0,.06), transparent 24%),
    var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8,11,16,.82);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 42px; height: 42px; border-radius: 10px; }
.brand-name span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 24px; color: #c8ced8; font-weight: 650; font-size: .95rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: white; }
.nav-cta { padding: 10px 16px; border: 1px solid rgba(255,118,0,.38); border-radius: 999px; background: rgba(255,118,0,.09); color: #fff !important; }
.menu-button { display: none; border: 1px solid var(--line); background: var(--panel-solid); color: white; padding: 9px 12px; border-radius: 10px; }

.hero { padding: 90px 0 72px; min-height: 680px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 56px; }
.eyebrow { color: var(--orange-2); font-size: .78rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
h1 { margin: 14px 0 20px; font-size: clamp(3rem, 7vw, 6.1rem); letter-spacing: -.065em; line-height: .94; max-width: 780px; }
h1 .accent { color: var(--orange); }
.lead { max-width: 680px; color: #bac2ce; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; border-radius: 12px; font-weight: 800; border: 1px solid transparent; transition: transform .16s ease, border-color .16s ease, background .16s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--orange), #e95d00); color: white; box-shadow: 0 12px 36px rgba(255,118,0,.18); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.025); color: #e8ebef; }
.hero-visual { position: relative; }
.hero-visual::before { content:""; position:absolute; inset:12% 8%; background:rgba(255,118,0,.16); filter:blur(80px); border-radius:50%; }
.hero-logo { position: relative; width: min(100%, 530px); margin: 0 auto; filter: drop-shadow(0 24px 55px rgba(0,0,0,.38)); }

.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 42px; max-width: 700px; }
.stat { padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.stat strong { display: block; font-size: 1rem; color: #fff; }
.stat span { color: var(--muted); font-size: .83rem; }

.section { padding: 84px 0; }
.section-tight { padding: 54px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 8px 0 10px; letter-spacing: -.045em; line-height: 1.05; }
.section-heading p { color: var(--muted); margin: 0; font-size: 1.05rem; }

.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018)); }
.card-icon { width: 42px; height: 42px; display:grid; place-items:center; border-radius: 11px; background: rgba(255,118,0,.11); border: 1px solid rgba(255,118,0,.2); color: var(--orange); font-weight: 900; margin-bottom: 18px; }
.card h3 { margin: 0 0 8px; font-size: 1.22rem; }
.card p { color: var(--muted); margin: 0; }

.product-card { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; border: 1px solid var(--line); border-radius: 24px; padding: 32px; background: linear-gradient(135deg, rgba(255,118,0,.055), rgba(255,255,255,.018)); }
.product-card h3 { margin: 6px 0 8px; font-size: clamp(1.7rem, 3vw, 2.35rem); letter-spacing: -.03em; }
.product-card p { color: var(--muted); margin: 0; max-width: 720px; }
.badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #ffd5b2; background: rgba(255,118,0,.1); border: 1px solid rgba(255,118,0,.2); }

.page-hero { padding: 86px 0 40px; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.page-hero .lead { max-width: 780px; }

.contact-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.contact-box { border: 1px solid var(--line); background: var(--panel); border-radius: 22px; padding: 30px; }
.contact-email { color: var(--orange-2); font-size: clamp(1.25rem, 3vw, 2rem); font-weight: 850; word-break: break-word; }
.contact-box ul { margin: 16px 0 0; color: var(--muted); padding-left: 20px; }

.callout { padding: 32px; border-radius: 24px; border: 1px solid rgba(255,118,0,.23); background: linear-gradient(135deg, rgba(255,118,0,.09), rgba(255,118,0,.02)); display:flex; justify-content:space-between; align-items:center; gap:24px; }
.callout h2 { margin:0 0 6px; letter-spacing:-.03em; }
.callout p { margin:0; color:var(--muted); }

.site-footer { margin-top: 56px; border-top: 1px solid var(--line); padding: 32px 0 38px; color: #8f98a6; }
.footer-grid { display:flex; justify-content:space-between; gap:24px; align-items:center; }
.footer-links { display:flex; flex-wrap:wrap; gap:18px; }
.footer-links a:hover { color:white; }
.small { font-size:.88rem; }

@media (max-width: 880px) {
  .hero { padding-top: 56px; }
  .hero-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-logo { width: min(82vw, 440px); }
  .card-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .nav-links { display:none; position:absolute; top:72px; left:20px; right:20px; padding:18px; border:1px solid var(--line); border-radius:16px; background:#0c1118; flex-direction:column; align-items:stretch; }
  .nav-links.open { display:flex; }
  .menu-button { display:block; }
  .callout, .footer-grid { align-items:flex-start; flex-direction:column; }
}

/* Featured work / Smart UI Focus & Navigation */
.featured-product { border-color: rgba(255,118,0,.28); }
.mini-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.mini-tags span { padding:6px 9px; border:1px solid var(--line); border-radius:999px; color:#bac2ce; background:rgba(255,255,255,.025); font-size:.76rem; font-weight:750; }
.product-list { display:grid; gap:24px; }
.product-project-card { display:grid; grid-template-columns:1fr auto; gap:32px; align-items:center; border:1px solid rgba(255,118,0,.28); border-radius:24px; padding:32px; background:linear-gradient(135deg, rgba(255,118,0,.08), rgba(255,255,255,.018)); }
.product-project-card h2 { margin:9px 0 10px; font-size:clamp(2rem,4vw,3.2rem); letter-spacing:-.045em; line-height:1; }
.product-project-card p { max-width:800px; margin:0; color:var(--muted); }
.product-hero { padding:88px 0 68px; }
.product-hero-grid { display:grid; grid-template-columns:.92fr 1.08fr; align-items:center; gap:56px; }
.product-hero h1 { font-size:clamp(3rem,6.2vw,5.6rem); }
.product-meta { display:flex; flex-wrap:wrap; gap:9px; margin-top:28px; }
.product-meta span { padding:7px 10px; border:1px solid var(--line); border-radius:10px; background:rgba(255,255,255,.025); color:#c7ced8; font-size:.78rem; font-weight:750; }
.ui-preview { overflow:hidden; border:1px solid rgba(255,118,0,.24); border-radius:22px; background:#0b1018; box-shadow:0 28px 70px rgba(0,0,0,.35); }
.preview-topbar { min-height:50px; display:flex; align-items:center; gap:10px; padding:0 16px; border-bottom:1px solid var(--line); background:#111722; font-size:.82rem; color:#dfe4ea; }
.preview-dot { width:9px; height:9px; border-radius:50%; background:var(--orange); box-shadow:0 0 18px rgba(255,118,0,.7); }
.preview-status { margin-left:auto; padding:5px 8px; border:1px solid rgba(39,211,255,.28); border-radius:999px; color:#65ddff; background:rgba(39,211,255,.08); font-size:.68rem; font-weight:850; letter-spacing:.08em; }
.preview-body { display:grid; grid-template-columns:.74fr 1.26fr; min-height:350px; }
.preview-sidebar { padding:20px; border-right:1px solid var(--line); background:#0d131d; }
.preview-label { display:block; color:#808b9b; font-size:.62rem; font-weight:900; letter-spacing:.15em; margin-bottom:9px; }
.preview-button { display:flex; align-items:center; justify-content:space-between; min-height:44px; padding:0 13px; margin-top:9px; border:1px solid var(--line); border-radius:10px; background:#151d29; color:#d9dee5; font-size:.83rem; font-weight:750; }
.preview-button span { font-size:.56rem; letter-spacing:.08em; color:#66ffd0; }
.preview-button.preview-selected { border-color:rgba(36,227,162,.7); background:rgba(36,227,162,.09); box-shadow:inset 3px 0 0 #24e3a2, 0 0 22px rgba(36,227,162,.07); color:white; }
.preview-button.preview-disabled { opacity:.4; }
.preview-content { display:grid; align-content:center; gap:14px; padding:20px; background:radial-gradient(circle at 80% 10%, rgba(255,118,0,.08), transparent 32%); }
.preview-card { padding:19px; border:1px solid var(--line); border-radius:14px; background:#121a26; }
.preview-card strong { display:block; margin-bottom:5px; font-size:1rem; }
.preview-card p { margin:0; color:#9ca6b5; font-size:.78rem; line-height:1.55; }
.preview-card-accent { border-color:rgba(39,211,255,.18); }
.preview-footer { display:flex; flex-wrap:wrap; gap:16px; padding:12px 16px; border-top:1px solid var(--line); background:#0e141e; color:#7f8a9b; font-size:.66rem; }
.feature-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.feature-card { min-height:190px; }
.proof-panel { display:grid; grid-template-columns:1fr auto; gap:42px; align-items:center; padding:34px; border:1px solid var(--line); border-radius:24px; background:linear-gradient(135deg, rgba(39,211,255,.045), rgba(255,255,255,.018)); }
.proof-panel h2 { margin:7px 0 8px; font-size:clamp(2rem,4vw,3rem); letter-spacing:-.04em; }
.proof-panel p { margin:0; color:var(--muted); max-width:800px; }
.proof-metric { min-width:180px; text-align:center; padding:22px; border:1px solid rgba(36,227,162,.2); border-radius:18px; background:rgba(36,227,162,.055); }
.proof-metric strong { display:block; color:#43e9b1; font-size:2rem; letter-spacing:-.04em; }
.proof-metric span { color:#a8b2be; font-size:.76rem; }
.screenshot-placeholder { min-height:390px; display:grid; place-items:center; padding:30px; border:1px dashed rgba(255,255,255,.16); border-radius:24px; background:linear-gradient(135deg, rgba(255,255,255,.025), rgba(255,118,0,.035)); }
.screenshot-placeholder-inner { max-width:500px; text-align:center; }
.screenshot-placeholder-inner strong { display:block; margin:15px 0 6px; font-size:1.2rem; }
.screenshot-placeholder-inner p { margin:0; color:var(--muted); }

@media (max-width: 880px) {
  .product-hero-grid, .product-project-card, .proof-panel { grid-template-columns:1fr; }
  .feature-grid { grid-template-columns:1fr; }
  .preview-body { grid-template-columns:1fr; }
  .preview-sidebar { border-right:0; border-bottom:1px solid var(--line); }
  .product-project-card .button { width:100%; }
}
