/* Incendify — coming-soon holding page.
   Standalone, intentionally separate from the Astro app under /src.
   Matches the brand: Be Vietnam Pro + Times-italic accent, square corners, B&W. */

:root {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --mid: #6e6e6e;
  --line: #e8e7e4;
  --sans: "Be Vietnam Pro", system-ui, -apple-system, sans-serif;
  --serif: "Times New Roman", Times, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--fg);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* Layout */
.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px);
}

.container {
  width: 100%;
  max-width: 760px;
}

/* Logo */
.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: clamp(56px, 9vw, 112px);
}

.logo img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--mid);
}

/* Eyebrow */
.kicker {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.15vw, 19px);
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--mid);
}

/* Headline */
.headline {
  margin-top: 28px;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.headline .italic {
  font-weight: 400;
}

/* Lead copy */
.lead {
  margin-top: 32px;
  max-width: 560px;
  color: var(--mid);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.55;
}

.lead .italic {
  color: var(--fg);
}

/* CTA */
.cta {
  margin-top: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--bg);
  color: var(--fg);
  outline: none;
}

.btn .italic {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 16px;
}

/* Footer */
.footer {
  margin-top: clamp(96px, 14vw, 160px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--mid);
}

.footer-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.footer-dot {
  opacity: 0.4;
}

.footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--fg);
  outline: none;
}
