/* SarvamDaily Brand HQ — pure black, pure white, gold */
:root {
  --bg: #000000;
  --bg-elevated: #0a0a0a;
  --bg-soft: #111111;
  --surface: #141414;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(212, 175, 55, 0.45);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-soft: rgba(255, 255, 255, 0.78);
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.16);
  --accent-strong: #f0d060;
  --live: #d4af37;
  --build: #d4af37;
  --product: #ffffff;
  --focus: #d4af37;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --font-serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --nav-h: 72px;
}


*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 12% -8%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(800px 420px at 92% 0%, rgba(212, 175, 55, 0.06), transparent 50%),
    #000000;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent-strong); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--text); }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--accent);
  color: #000000;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(145deg, #111111, #000000);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}
.logo-text { font-size: 1.05rem; }
.logo-text span { color: var(--text-muted); font-weight: 500; margin-left: 0.35rem; font-size: 0.85rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #000000 !important;
  font-weight: 600;
  text-decoration: none !important;
  font-size: 0.92rem;
}
.nav-cta:hover { background: var(--accent-strong); color: #000000 !important; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--nav-h) + 0.5rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 0.85rem;
    border-radius: 8px;
  }
  .nav-links a:hover { background: var(--bg-soft); }
  .nav-cta { margin-top: 0.35rem; width: 100%; }
}

/* Hero & sections */
.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: var(--accent);
}
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}
h1 {
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  max-width: 16ch;
}
h2 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.lede {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: var(--text-soft);
  max-width: 40rem;
  margin: 0 0 1.75rem;
}
.voice-line {
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 2rem;
  max-width: 34rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #000000;
}
.btn-primary:hover { background: var(--accent-strong); color: #000000; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-soft); color: var(--text); }

.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.section-head p {
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0;
}
.section-muted {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.04), transparent);
}

/* Venture map */
.map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .map-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .map-grid { grid-template-columns: 1fr; }
}
.map-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  min-height: 100%;
}
.map-card .kicker {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 0.65rem;
}
.map-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Company cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) {
  .card-grid { grid-template-columns: 1fr; }
}
.company-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.company-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}
.company-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.company-card h3 { margin: 0; }
.company-card h3 a {
  color: var(--text);
  text-decoration: none;
}
.company-card h3 a:hover { color: var(--accent-strong); }
.company-card p {
  margin: 0;
  color: var(--text-muted);
  flex: 1;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: auto;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.badge-live { background: rgba(212, 175, 55, 0.16); color: var(--live); border: 1px solid rgba(212, 175, 55, 0.35); }
.badge-build { background: rgba(255, 255, 255, 0.06); color: var(--build); border: 1px solid rgba(212, 175, 55, 0.35); }
.badge-product { background: rgba(255, 255, 255, 0.08); color: var(--product); border: 1px solid rgba(255, 255, 255, 0.2); }
.link-out {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-strong);
}
.link-out:hover { color: var(--text); }

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pill-list li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* About */
.prose {
  max-width: 42rem;
}
.prose p { color: var(--text-soft); margin: 0 0 1.1rem; }
.founder-card {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  max-width: 42rem;
}
.founder-card strong { color: var(--text); }
.founder-meta {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .form-row.two { grid-template-columns: 1fr; }
}
label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
}
.req { color: var(--accent); }
input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}
input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea { min-height: 140px; resize: vertical; }
.form-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--text-soft);
}
.form-status.show { display: block; }
.form-status.error {
  background: rgba(212, 100, 80, 0.12);
  border-color: rgba(212, 100, 80, 0.35);
}
.contact-aside {
  padding: 0.25rem 0;
}
.contact-aside h2 { margin-bottom: 0.75rem; }
.contact-aside p { color: var(--text-muted); margin: 0 0 1.25rem; }
.email-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.email-list li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
.email-list strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.email-list a {
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}
.email-list a:hover { color: var(--accent-strong); }

/* Privacy */
.legal h2 { margin-top: 2rem; font-size: 1.35rem; }
.legal p, .legal li { color: var(--text-soft); }
.legal ul { padding-left: 1.2rem; }

/* CTA band */
.cta-band {
  margin: 1rem 0 0;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.03)),
    var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cta-band p { margin: 0.4rem 0 0; color: var(--text-muted); max-width: 36rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.site-footer h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.site-footer p { color: var(--text-muted); margin: 0 0 0.75rem; font-size: 0.95rem; }
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
}
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { margin-bottom: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
