
: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%;
  }
}

/* Privacy policy */
.legal-hero-wrap { padding-top: 54px; }
.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  gap: 20px;
  align-items: start;
}
.legal-hero h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.legal-lead { max-width: 900px; }
.legal-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.compact-card { padding: 17px; }
.compact-card strong { display: block; margin-top: 7px; line-height: 1.5; }
.legal-index { position: sticky; top: 104px; }
.legal-index h3 { margin-bottom: 14px; }
.legal-toc { display: grid; gap: 8px; }
.legal-toc a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.legal-toc a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
}
.legal-layout { max-width: 980px; }
.legal-card { padding: clamp(24px, 4vw, 46px); }
.legal-section { scroll-margin-top: 112px; }
.legal-section + .legal-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.legal-section h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
.legal-section h3 { margin-top: 20px; }
.legal-section p { color: var(--muted); line-height: 1.82; }
.legal-section a { color: var(--turmeric-soft); text-decoration: underline; text-underline-offset: 3px; }
.legal-list-block {
  margin-top: 18px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
}
.legal-list-block h3 { margin-top: 0; }
.account-deletion {
  padding: 28px;
  border: 1px solid rgba(244, 180, 37, 0.24) !important;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(244, 180, 37, 0.08), rgba(214, 66, 43, 0.07));
}
.account-deletion h2 { margin-top: 16px; }
.deletion-steps { display: grid; gap: 14px; margin: 22px 0; }
.deletion-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 17px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(5,5,5,0.45);
}
.deletion-step > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--turmeric), var(--kumkum));
  color: #120b06;
  font-weight: 900;
}
.deletion-step strong { display: block; margin-top: 5px; }
.deletion-step p { margin: 7px 0 0; }
.deletion-note { margin-top: 18px; }
.legal-contact-box { margin-top: 18px; }
.footer-policy-link { color: var(--turmeric-soft); }
.footer-policy-link:hover { color: var(--text); }

@media (max-width: 980px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-index { position: static; }
  .legal-meta-row { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .account-deletion { padding: 20px; }
  .deletion-step { grid-template-columns: 36px 1fr; padding: 14px; }
  .deletion-step > span { width: 32px; height: 32px; }
}

/* desifaces web product-entry enrichment */
.nav{align-items:center}.nav .nav-signin{color:#fff;font-weight:700;margin-left:4px}.nav .nav-create{padding:10px 14px;border-radius:13px;background:linear-gradient(135deg,var(--turmeric-soft),var(--turmeric));color:#1a1104;font-weight:800;box-shadow:0 8px 24px rgba(244,180,37,.12)}.nav .nav-create:hover{color:#1a1104;transform:translateY(-1px)}
.site-header{background:rgba(6,6,6,.88)}.hero{padding-top:96px}.hero-grid{gap:52px}.hero h1{font-size:clamp(3.2rem,5.7vw,5.8rem);max-width:870px}.hero-art{background:radial-gradient(circle at 50% 35%,rgba(244,180,37,.13),transparent 45%),linear-gradient(155deg,rgba(27,22,17,.94),rgba(7,7,7,.92))}.product-card,.feature,.metric,.info-card{transition:transform .2s ease,border-color .2s ease}.product-card:hover,.feature:hover,.info-card:hover{transform:translateY(-3px);border-color:rgba(244,180,37,.28)}
@media(max-width:920px){.nav .nav-signin,.nav .nav-create{display:none}}
