:root {
  --paper: #f5f5f4;
  --ink: #191716;
  --muted: #706b67;
  --line: #d9d5d1;
  --accent: #ef5a68;
  --accent-dark: #b82f43;
  --card: rgba(255, 255, 255, 0.72);
  --night: #252120;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(25, 23, 22, .08);
  background: rgba(245, 245, 244, .86);
  backdrop-filter: blur(18px);
}
.nav-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { text-decoration: none; font-size: 1.12rem; font-weight: 800; letter-spacing: -.04em; }
.brand-dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: .93rem; }
.nav-links a { text-decoration: none; color: var(--muted); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: white !important;
  text-decoration: none;
  font-weight: 700;
}
.button.accent { background: var(--accent); }
.hero { padding: 100px 0 76px; overflow: hidden; }
.eyebrow { color: var(--accent-dark); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 860px; margin: 18px 0 24px; font-size: clamp(3.1rem, 8vw, 7.2rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
.lead { max-width: 680px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.ghost { border: 1px solid var(--line); background: transparent; color: var(--ink) !important; }
.collage { display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 14px; margin-top: 70px; transform: rotate(-1deg); }
.tile { min-height: 280px; border-radius: 30px; background-size: cover; background-position: center; box-shadow: 0 24px 70px rgba(31, 26, 24, .12); }
.tile.one { background: linear-gradient(135deg, rgba(239,90,104,.22), rgba(30,27,26,.08)), url('media/loginBG.jpg') center/cover; }
.tile.two { background: linear-gradient(135deg, rgba(255,210,180,.15), rgba(30,27,26,.1)), url('media/newaccBG.jpg') center/cover; }
.tile.three { background: linear-gradient(135deg, rgba(239,90,104,.12), rgba(30,27,26,.15)), url('media/verifyBG.jpg') center/cover; }
.section { padding: 90px 0; }
.section.dark { background: var(--night); color: white; }
.section.dark .lead { color: #bdb6b1; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--card); }
.card strong { display: block; margin-bottom: 8px; font-size: 1.12rem; }
.card p { margin: 0; color: var(--muted); }
.legal { padding: 72px 0 110px; }
.legal article { max-width: 780px; }
.legal h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
.legal h2 { margin-top: 48px; font-size: 1.7rem; }
.legal h3 { margin-top: 30px; font-size: 1.16rem; }
.legal p, .legal li { color: #4e4946; }
.notice { padding: 18px 20px; border-left: 4px solid var(--accent); background: #fff; border-radius: 0 14px 14px 0; }
.footer { padding: 46px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 760px) {
  .nav-links > a:not(.button) { display: none; }
  .hero { padding-top: 68px; }
  .collage { grid-template-columns: 1fr 1fr; }
  .tile { min-height: 220px; }
  .tile.three { display: none; }
  .grid { grid-template-columns: 1fr; }
}
