/* gettitanium.app — brand-aligned static styles.
 *
 * Palette (per brand sheet):
 *   Titanium Black  #0B0B0D
 *   Dark Slate      #1A1C20
 *   Gunmetal        #2A2D33
 *   Steel Gray      #8A8F98
 *   Cold White      #F2F4F7
 *   Accent Orange   #FF6A00
 */

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

html, body {
  background: #0B0B0D;
  color: #F2F4F7;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text",
               system-ui, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
}

body {
  background:
    radial-gradient(ellipse at top, rgba(255, 106, 0, 0.06) 0%, transparent 50%),
    #0B0B0D;
  min-height: 100vh;
}

/* ---------------- Layout ---------------- */

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

@media (max-width: 600px) {
  .wrap { padding: 32px 20px 64px; }
}

header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
}

header img.logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

header .brand {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.22em;
}

header .tagline {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: #FF6A00;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

footer {
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid #2A2D33;
  font-size: 12px;
  color: #8A8F98;
  text-align: center;
}

footer a {
  color: #8A8F98;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.12s, color 0.12s;
}

footer a:hover {
  color: #FF6A00;
  border-bottom-color: #FF6A00;
}

/* ---------------- Hero ---------------- */

.hero {
  text-align: center;
  margin-bottom: 96px;
}

.hero img.hero-logo {
  width: 144px;
  height: 144px;
  margin-bottom: 32px;
  object-fit: contain;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero h1 .accent {
  color: #FF6A00;
}

.hero .pitch {
  font-size: 19px;
  color: #8A8F98;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero .cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta {
  display: inline-block;
  padding: 14px 32px;
  background: #FF6A00;
  color: #0B0B0D;
  border: 1px solid #FF6A00;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.12s, border-color 0.12s;
}

.cta:hover {
  background: #ff7a1f;
  border-color: #ff7a1f;
}

.cta.secondary {
  background: transparent;
  color: #F2F4F7;
  border-color: #2A2D33;
}

.cta.secondary:hover {
  background: #2A2D33;
  border-color: #2A2D33;
}

.cta.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.cta-note {
  font-size: 11px;
  color: #8A8F98;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
  .hero .pitch { font-size: 16px; }
}

/* ---------------- Feature grid ---------------- */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 96px;
}

.feature {
  background: #1A1C20;
  border: 1px solid #2A2D33;
  border-radius: 8px;
  padding: 24px;
}

.feature h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FF6A00;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #8A8F98;
  line-height: 1.6;
}

/* ---------------- Privacy page ---------------- */

article.policy {
  font-size: 16px;
  line-height: 1.7;
}

article.policy h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

article.policy h1 + p {
  font-size: 13px;
  color: #8A8F98;
  margin-bottom: 40px;
}

article.policy h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  color: #F2F4F7;
}

article.policy h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
  color: #F2F4F7;
}

article.policy p,
article.policy ul,
article.policy ol {
  color: #C0C5CD;
  margin-bottom: 16px;
}

article.policy ul,
article.policy ol {
  padding-left: 24px;
}

article.policy li {
  margin-bottom: 6px;
}

article.policy strong {
  color: #F2F4F7;
}

article.policy code {
  font-family: ui-monospace, SF Mono, Menlo, monospace;
  font-size: 13px;
  background: #1A1C20;
  border: 1px solid #2A2D33;
  border-radius: 4px;
  padding: 2px 6px;
  color: #FF6A00;
}

article.policy hr {
  border: none;
  border-top: 1px solid #2A2D33;
  margin: 40px 0;
}

article.policy a {
  color: #FF6A00;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 106, 0, 0.4);
}

article.policy a:hover {
  border-bottom-color: #FF6A00;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 12px;
  color: #8A8F98;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back-link:hover {
  color: #FF6A00;
}
