/* imaancircle.com — static site, W001.
   Design tokens mirror the app (lib/core/theme/app_colors.dart). */

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Variable.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --deep-green: #0E3B2E;
  --deep-green-light: #1C5443;
  --deep-green-dark: #082A20;
  --ivory: #FAF6EC;
  --cream: #F3ECDA;
  --parchment: #EFE5CC;
  --gold: #C5A44E;
  --gold-deep: #A88633;
  --gold-on-dark: #D9BC6E;
  --text-primary: #1E241F;
  --text-secondary: #5A635C;
  --text-on-green: #F7F3E6;
  --text-on-green-muted: #C2CFC6;
  --divider: #E2DAC5;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --maxw: 62rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { color: var(--text-secondary); }

a { color: var(--deep-green); text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--deep-green-light); }

/* Visible keyboard focus everywhere. */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

/* ——— header ——— */
.site-header {
  border-bottom: 1px solid var(--divider);
  background: var(--ivory);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem; gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  color: var(--text-primary); text-decoration: none;
}
.brand svg { flex: none; }
.site-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.site-nav a {
  font-size: 0.95rem; text-decoration: none; color: var(--text-secondary);
  padding: 0.25rem 0;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--deep-green); }
.site-nav a[aria-current="page"] { border-bottom: 2px solid var(--gold); }

/* ——— hero ——— */
.hero { padding: 4rem 0 3.5rem; }
.hero .wrap {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem; align-items: center;
}
.hero-copy .arch { margin-bottom: 1.2rem; }
.hero-sub {
  margin-top: 1rem; font-size: 1.15rem; max-width: 34rem;
}
.badges { display: flex; gap: 0.8rem; margin-top: 1.8rem; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--deep-green); color: var(--text-on-green);
  border-radius: 12px; padding: 0.6rem 1.1rem;
  font-size: 0.95rem; line-height: 1.25; text-decoration: none;
  opacity: 0.92;
}
.badge .badge-store { display: block; font-weight: 600; }
.badge .badge-state {
  display: block; font-size: 0.72rem; color: var(--text-on-green-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.notify { margin-top: 1.1rem; font-size: 0.98rem; }
.notify a { font-weight: 600; }

/* CSS device frame */
.device {
  width: min(300px, 78vw);
  margin: 0 auto;
  border-radius: 44px;
  background: var(--deep-green-dark);
  padding: 12px;
  box-shadow: 0 24px 60px rgba(8, 42, 32, 0.28);
}
.device .screen {
  border-radius: 34px; overflow: hidden; display: block;
  background: var(--ivory);
}
.device img { display: block; width: 100%; height: auto; }

/* ——— sections ——— */
section { padding: 3.25rem 0; }
.section-title { margin-bottom: 0.9rem; }
.lede { max-width: 44rem; font-size: 1.1rem; }

.why { background: var(--cream); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }

/* feature cards */
.features .wrap > p { max-width: 44rem; }
.cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem; margin-top: 2rem;
}
.card {
  background: #FFFDF6;
  border: 1px solid var(--divider);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.card h3 { color: var(--deep-green); }
.card .shot {
  margin-top: 0.4rem;
  border-radius: 12px; border: 1px solid var(--divider);
  overflow: hidden; height: 220px;
}
.card .shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.shot-honor img { object-position: 50% 26%; }
.shot-score img { object-position: 50% 12%; }
.shot-circles img { object-position: 50% 40%; }
.shot-seasons img { object-position: 50% 30%; }

/* privacy promise */
.promise { background: var(--deep-green); }
.promise h2 { color: var(--text-on-green); }
.promise p { color: var(--text-on-green-muted); max-width: 44rem; }
.promise a { color: var(--gold-on-dark); }
.promise .arch-line { margin-bottom: 1.1rem; }

/* coming soon strip */
.soon { text-align: center; }
.soon p { max-width: 40rem; margin: 0 auto; font-size: 1.05rem; }

/* ——— legal & support pages ——— */
.page { padding: 3rem 0 3.5rem; }
.page .wrap { max-width: 46rem; }
.page h1 { margin-bottom: 0.5rem; }
.page .meta {
  font-size: 0.92rem; font-style: italic; color: var(--text-secondary);
  border-left: 3px solid var(--gold); padding-left: 0.8rem;
  margin: 1.2rem 0 2rem;
}
.page h2 { font-size: 1.3rem; margin: 2rem 0 0.6rem; }
.page p + p { margin-top: 0.9rem; }
.page ul, .page ol { margin: 0.8rem 0 0.8rem 1.4rem; color: var(--text-secondary); }
.page li { margin-bottom: 0.55rem; }
.page li strong, .page p strong { color: var(--text-primary); }
.page ol.terms-list > li { margin-bottom: 1rem; }

/* support FAQ */
.faq { margin-top: 1.5rem; }
.faq h2 { font-size: 1.15rem; margin: 1.6rem 0 0.35rem; }

/* ——— footer ——— */
.site-footer {
  border-top: 1px solid var(--divider);
  background: var(--cream);
  padding: 2rem 0 2.4rem;
  margin-top: 2rem;
}
.site-footer .wrap {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem;
  align-items: center; justify-content: space-between;
  font-size: 0.92rem; color: var(--text-secondary);
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.site-footer a { color: var(--text-secondary); }
.site-footer a:hover { color: var(--deep-green); }

/* ——— ornaments ——— */
.arch-line {
  display: flex; align-items: center; gap: 0.75rem;
}
.arch-line::before, .arch-line::after {
  content: ''; height: 1px; flex: 1; background: var(--divider);
}
.promise .arch-line::before, .promise .arch-line::after { background: var(--deep-green-light); }

/* ——— responsive ——— */
@media (max-width: 800px) {
  .hero { padding: 2.6rem 0 2.4rem; }
  .hero .wrap { grid-template-columns: 1fr; gap: 2.4rem; }
  .cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body { font-size: 1rem; }
  .site-header .wrap { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
