
:root {
  --bg: #070707;
  --bg-soft: #101010;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: #141414;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f2e8;
  --muted: #d4c8bb;
  --turmeric: #f4b425;
  --turmeric-soft: #ffd56d;
  --kumkum: #d6422b;
  --kumkum-soft: #ff6a4f;
  --glow: 0 0 28px rgba(244, 180, 37, 0.24);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.4);
  --max: 1180px;
  --radius: 24px;
  --radius-lg: 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 180, 37, 0.17), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(214, 66, 43, 0.12), transparent 22%),
    linear-gradient(180deg, #040404 0%, #0d0c0c 55%, #120d0d 100%);
  color: var(--text);
}

main { flex: 1; display: block; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 8, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--glow);
  background: #000;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-wordmark .desifaces {
  background: linear-gradient(90deg, var(--turmeric), var(--turmeric-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-wordmark .dotai {
  background: linear-gradient(90deg, var(--kumkum), var(--kumkum-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.nav a {
  padding: 8px 0;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.hero {
  padding: 74px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--turmeric), var(--kumkum));
  box-shadow: var(--glow);
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.55rem, 5.2vw, 5.15rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.24rem;
}

.lead,
.section-copy,
.feature p,
.product-card p,
.info-card p,
.card p,
.contact-box p,
.list-copy li,
.feature-list div {
  color: var(--muted);
  line-height: 1.78;
}

.lead {
  margin-top: 22px;
  max-width: 760px;
  font-size: 1.06rem;
}

.highlight-brand {
  font-weight: 800;
  white-space: nowrap;
}

.highlight-brand .desifaces {
  color: var(--turmeric);
}

.highlight-brand .dotai {
  color: var(--kumkum);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.button:hover { transform: translateY(-1px); }

.button.primary {
  background: linear-gradient(135deg, #fff3d3, #ffffff);
  color: #171311;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}

.hero-art,
.panel,
.card,
.feature,
.metric,
.product-card,
.info-card,
.contact-box,
.banner {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-art,
.panel,
.card,
.banner {
  border-radius: var(--radius-lg);
}

.panel,
.card,
.banner {
  background: rgba(255,255,255,0.04);
}

.panel,
.card {
  padding: 26px;
}

.hero-art {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.panel-highlight {
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(244, 180, 37, 0.12), rgba(214, 66, 43, 0.12));
  border: 1px solid rgba(244, 180, 37, 0.18);
}

.panel-highlight p:first-child {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.62);
}

.panel-highlight .big-copy {
  margin-top: 10px;
  font-size: 1.12rem;
  line-height: 1.74;
}

.metric-grid,
.grid-2,
.grid-3,
.contact-grid,
.split-points,
.stat-grid {
  display: grid;
  gap: 18px;
}

.metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 14px; }
.grid-2 { grid-template-columns: 0.95fr 1.05fr; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: 1fr 0.92fr; }
.split-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 18px; }

.metric,
.feature,
.product-card,
.info-card,
.contact-box {
  border-radius: var(--radius);
  padding: 22px;
  background: var(--panel-strong);
}

.metric .label,
.small-label {
  color: rgba(255,255,255,0.56);
  font-size: 0.9rem;
}

.metric .value {
  margin-top: 8px;
  font-size: 1.02rem;
  line-height: 1.6;
}

.section {
  padding: 28px 0;
}

.section-header {
  margin-bottom: 20px;
}

.section-copy {
  margin-top: 14px;
  max-width: 780px;
}

.banner {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.feature ul,
.contact-list,
.list-copy {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.contact-box.accent {
  background: linear-gradient(135deg, rgba(244, 180, 37, 0.12), rgba(214, 66, 43, 0.12));
  border-color: rgba(244, 180, 37, 0.2);
}

.stat {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
}

.kicker {
  display: inline-block;
  margin-top: 14px;
  color: var(--turmeric);
  font-weight: 700;
}

footer {
  margin-top: auto;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.64);
  font-size: 0.95rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .contact-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 28px)); }

  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav { gap: 16px; }
  .hero { padding-top: 50px; }
  .metric-grid,
  .split-points { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}



.screenshot-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.screenshot-copy p:not(.small-label) {
  color: var(--muted);
  line-height: 1.78;
}

.screenshot-copy h3,
.shot-copy h3 {
  margin-top: 10px;
  font-size: 1.5rem;
}

.phone-frame {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #020202;
  padding: 10px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.42);
}

.phone-frame.tall {
  max-width: 420px;
  justify-self: center;
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  display: block;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.screenshot-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel-strong);
  padding: 18px;
  box-shadow: var(--shadow);
}

.shot-copy p:not(.small-label) {
  color: var(--muted);
  line-height: 1.72;
}

.shot-copy {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .screenshot-hero,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .phone-frame.tall {
    max-width: 520px;
    width: 100%;
  }
}
