/* ============================================================
   SWISSY — meetswissy.org — Stylesheet RUN 2
   Pure CSS · No framework · No external fonts
   Swiss Design: clarity, whitespace, precision
   ============================================================ */

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

:root {
  /* Palette */
  --bg:           #fafaf8;
  --bg-white:     #ffffff;
  --surface:      #f4f4f0;
  --surface-2:    #ebebе5;
  --border:       #e0e0d8;
  --border-light: #ececе6;
  --text:         #161616;
  --text-2:       #3a3a3a;
  --muted:        #6a6a62;
  --accent:       #1a4ed8;
  --accent-bg:    #eef2fc;
  --accent-mid:   #3b6ef0;
  --red:          #b91c1c;
  --green:        #15803d;

  /* Layout */
  --max:     880px;
  --nav-h:   64px;
  --r:       10px;
  --r-sm:    6px;

  /* Footer */
  --footer-bg:   #0f0f0f;
  --footer-text: #888880;
}

/* ── Base ── */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.65rem); }
h3 { font-size: 1rem; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--text-2); }
p:last-child { margin-bottom: 0; }
a  { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-mid); text-decoration: underline; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; color: var(--text-2); }
strong { font-weight: 600; color: var(--text); }

/* ── Layout ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
}
.nav__logo {
  font-size: 1.2rem; font-weight: 700; color: var(--text);
  letter-spacing: -0.04em; text-decoration: none;
}
.nav__logo:hover { color: var(--accent); text-decoration: none; }
.nav__links { display: flex; gap: 1.75rem; list-style: none; }
.nav__links a { font-size: 0.875rem; color: var(--muted); font-weight: 500; letter-spacing: -0.01em; }
.nav__links a:hover { color: var(--text); text-decoration: none; }
.nav__links a.active { color: var(--text); }

/* ── Section base ── */
.section { padding: 5.5rem 0; }
.section--alt { background: var(--surface); }
.section--white { background: var(--bg-white); }

.section__label {
  display: block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.75rem;
}
.section__intro {
  font-size: 1.05rem; color: var(--muted);
  max-width: 560px; margin-top: 0.5rem; margin-bottom: 3rem;
  line-height: 1.7;
}

/* ── Hero ── */
.hero {
  padding: 7rem 0 6rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-bg);
  padding: 0.3rem 0.85rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero__title { margin-bottom: 1.25rem; max-width: 640px; }
.hero__sub {
  font-size: 1.15rem; color: var(--muted);
  max-width: 560px; line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center;
  padding: 0.65rem 1.35rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer; transition: all 0.15s;
  text-decoration: none; border: none;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-mid); color: #fff; }
.btn--ghost { border: 1.5px solid var(--border); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--text); background: var(--surface); color: var(--text); }

/* ── 4-column feature grid ── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 1.25rem; margin-top: 0;
}
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.15s;
}
.card:hover { border-color: #c0c0b8; }
.section--alt .card { background: var(--bg-white); }
.card__icon { font-size: 1.6rem; margin-bottom: 0.875rem; display: block; }
.card h3 { font-size: 0.9375rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── Audience list ── */
.audience-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem; margin-top: 0; list-style: none; padding: 0;
}
.audience-list li {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem; color: var(--text-2);
  display: flex; align-items: center; gap: 0.65rem;
  line-height: 1.45;
}
.audience-list li::before {
  content: "→";
  color: var(--accent); font-weight: 700; flex-shrink: 0;
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 1.25rem; margin-top: 0;
}
.step {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--r) var(--r);
  padding: 1.5rem;
}
.step__num {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem; display: block;
}
.step h3 { font-size: 0.9375rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.875rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── Disclaimer box ── */
.disclaimer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--muted);
  border-radius: var(--r);
  padding: 1.1rem 1.35rem;
  font-size: 0.85rem; color: var(--muted);
  margin-top: 2.5rem; line-height: 1.6;
}
.disclaimer strong { color: var(--text-2); }

/* ── Why Swissy ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem; margin-top: 0;
}
.why-item {
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.why-item__q {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem; display: block;
}
.why-item p { font-size: 0.875rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── Meet Swissy (character) ── */
.meet-swissy {
  display: flex; gap: 3rem; align-items: flex-start; flex-wrap: wrap;
}
.meet-swissy__avatar {
  width: 128px; height: 128px; flex-shrink: 0;
  background: var(--accent-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.75rem;
}
.meet-swissy__body { flex: 1; min-width: 240px; }
.traits {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem;
}
.trait {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.25rem 0.8rem;
  font-size: 0.8rem; color: var(--muted);
  letter-spacing: -0.01em;
}

/* ── Physical products (Meet Swissy section) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.1rem; margin-top: 2.5rem;
}
.product-card {
  background: var(--bg-white);
  border: 1.5px dashed var(--border);
  border-radius: var(--r);
  padding: 1.75rem 1rem 1.25rem;
  text-align: center;
}
.product-card__icon {
  width: 60px; height: 60px;
  background: var(--surface);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.product-card h4 { font-size: 0.875rem; color: var(--text-2); margin-bottom: 0.3rem; }
.product-card__status {
  font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.04em; font-style: italic;
}

/* ── Coming Soon ── */
.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 1.1rem; margin-top: 0;
}
.coming-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.coming-card__icon { font-size: 1.4rem; }
.coming-card h4 { font-size: 0.9rem; color: var(--text); }
.coming-card__tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); background: var(--surface);
  padding: 0.2rem 0.6rem; border-radius: 100px;
  width: fit-content;
}

/* ── Contact blocks ── */
.contact-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem; margin-bottom: 1.25rem;
}
.contact-block dt {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.35rem;
}
.contact-block dd { font-size: 0.9375rem; color: var(--text-2); margin-bottom: 0.5rem; }
.contact-block dd:last-child { margin-bottom: 0; }

/* ── Prose (Privacy / Terms) ── */
.prose h2 {
  font-size: 1.05rem; margin-top: 2.25rem; margin-bottom: 0.5rem;
  padding-top: 1.75rem; border-top: 1px solid var(--border);
}
.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.prose p, .prose li { font-size: 0.9375rem; color: var(--text-2); }
.prose ul { margin-bottom: 1rem; }

/* ── Page header (inner pages) ── */
.page-header {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}
.page-header h1 { font-size: clamp(1.65rem, 3.5vw, 2.2rem); margin-bottom: 0.5rem; }
.page-header__meta { font-size: 0.8125rem; color: var(--muted); }

/* ── Footer ── */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
  align-items: start;
}
.footer__brand { }
.footer__brand-name {
  font-size: 1.1rem; font-weight: 700; color: #fff;
  letter-spacing: -0.03em; display: block; margin-bottom: 0.2rem;
}
.footer__brand-tagline {
  font-size: 0.8rem; color: #555550; display: block; margin-bottom: 0.15rem;
}
.footer__brand-url { font-size: 0.8rem; color: #444440; }
.footer__links { display: flex; gap: 1.75rem; list-style: none; padding-top: 0.2rem; }
.footer__links a { font-size: 0.8rem; color: var(--footer-text); }
.footer__links a:hover { color: #fff; text-decoration: none; }
.footer__disclaimer {
  grid-column: 1 / -1;
  font-size: 0.75rem; color: #444440;
  border-top: 1px solid #1e1e1e;
  padding-top: 1.25rem; margin-top: 0.5rem;
  line-height: 1.6;
}

/* ── Intro Viewport ── */
.intro-viewport {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: var(--bg-white);
}
.intro-viewport__text {
  max-width: 680px;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.01em;
}

/* ── Shop Sign ── */
.shop-sign-wrap {
  display: flex; justify-content: center;
  padding: 3rem 0 2rem;
}
.shop-sign {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.shop-sign__chain {
  display: flex; gap: 0; margin-bottom: 0;
}
.shop-sign__chain span {
  display: block;
  width: 12px; height: 18px;
  border: 2px solid #b0a898;
  border-radius: 50%;
  margin: 0 1px;
  background: transparent;
}
.shop-sign__board {
  background: var(--bg-white);
  border: 2.5px solid var(--text);
  border-radius: var(--r);
  padding: 2.25rem 3.5rem;
  text-align: center;
  box-shadow: 4px 4px 0 var(--border);
  position: relative;
}
.shop-sign__name {
  display: block;
  font-size: 2rem; font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text);
  line-height: 1;
}
.shop-sign__sub {
  display: block;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-top: 0.35rem;
}
.shop-sign__tag-wrap {
  position: absolute;
  bottom: -2.25rem; right: -1.5rem;
  transform: rotate(8deg);
}
.shop-sign__tag {
  background: #fff;
  border: 2px solid var(--text);
  border-radius: var(--r-sm);
  padding: 0.4rem 0.75rem;
  text-align: center;
  box-shadow: 2px 2px 0 var(--border);
  position: relative;
}
.shop-sign__tag::before {
  content: '';
  display: block;
  width: 2px; height: 18px;
  background: #b0a898;
  margin: 0 auto 0.3rem;
}
.shop-sign__tag span {
  display: block;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .hero { padding: 4.5rem 0 3.5rem; }
  .section { padding: 3.5rem 0; }
  .nav__links { gap: 1rem; }
  .nav__links a { font-size: 0.8rem; }
  .meet-swissy { flex-direction: column; gap: 1.5rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { flex-wrap: wrap; gap: 1rem; }
}
