@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --bg:          #FFFFFF;
  --bg-off:      #F7F7F7;
  --bg-dark:     #0A0A0A;
  --ink:         #0A0A0A;
  --ink-mid:     #444444;
  --ink-light:   #888888;
  --border:      #E4E4E4;
  --border-dark: #1E1E1E;
  --accent:      #0A0A0A;
  --radius:      10px;
  --max-w:       1060px;
  --font-head:   'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:   'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ────────────────────────────────────────
   HEADER
──────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.brand span { font-weight: 300; }
.header-tag {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ────────────────────────────────────────
   MAIN WRAPPER
──────────────────────────────────────── */
main {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 28px 96px;
  width: 100%;
}

/* ────────────────────────────────────────
   BREADCRUMB
──────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-light);
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.breadcrumb a { color: var(--ink-mid); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb svg {
  width: 11px; height: 11px;
  stroke: var(--ink-light); fill: none;
  stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ────────────────────────────────────────
   HOME PAGE
──────────────────────────────────────── */
.home-hero {
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
  animation: fadeUp 0.5s ease both;
}
.home-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 18px;
}
.home-hero h1 em {
  font-style: normal;
  font-weight: 300;
  letter-spacing: -1.5px;
}
.home-hero p {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 500px;
  line-height: 1.65;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.legal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink);
  position: relative;
  transition: background 0.18s, border-color 0.18s;
  animation: fadeUp 0.4s ease both;
}
.legal-card:nth-child(1) { animation-delay: 0.04s; }
.legal-card:nth-child(2) { animation-delay: 0.08s; }
.legal-card:nth-child(3) { animation-delay: 0.12s; }
.legal-card:nth-child(4) { animation-delay: 0.16s; }
.legal-card:nth-child(5) { animation-delay: 0.20s; }
.legal-card:nth-child(6) { animation-delay: 0.24s; }
.legal-card:nth-child(7) { animation-delay: 0.28s; }
.legal-card:nth-child(8) { animation-delay: 0.32s; }
.legal-card:nth-child(9) { animation-delay: 0.36s; }

.legal-card:hover {
  background: var(--bg-off);
  border-color: #CCCCCC;
}

.card-icon {
  width: 36px; height: 36px;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.card-icon svg {
  width: 17px; height: 17px;
  stroke: var(--ink); fill: none;
  stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.card-desc {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.6;
  flex: 1;
}
.card-arrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-light);
  margin-top: 4px;
}

/* ────────────────────────────────────────
   LEGAL PAGE HEADER
──────────────────────────────────────── */
.page-header {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
  animation: fadeUp 0.45s ease both;
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 900;
  letter-spacing: -1.8px;
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--ink);
}
.page-header h1 em {
  font-style: normal;
  font-weight: 300;
}
.page-subtitle {
  font-size: 16px;
  color: var(--ink-mid);
  margin-top: 10px;
}
.eff-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 4px;
}

/* ────────────────────────────────────────
   LEGAL CONTENT
──────────────────────────────────────── */
.legal-content {
  max-width: 700px;
  animation: fadeUp 0.5s 0.08s ease both;
}
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 44px 0 12px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
  color: var(--ink);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.1px;
  margin: 28px 0 8px;
}
.legal-content p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.78;
  margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
  margin: 0 0 20px 22px;
}
.legal-content li {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.72;
  margin-bottom: 7px;
}
.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content strong { font-weight: 600; color: var(--ink); }
.sec-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 4px;
}

/* ────────────────────────────────────────
   ABOUT PAGE
──────────────────────────────────────── */
.about-body { max-width: 800px; animation: fadeUp 0.5s 0.08s ease both; }

.about-lead {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  letter-spacing: -0.2px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
}

.about-section {
  padding: 0 0 52px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
}
.about-section h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.12;
  margin: 10px 0 20px;
}
.about-section p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.78;
  margin-bottom: 14px;
  max-width: 660px;
}
.tag-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 10px;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.pillar {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 0.15s;
}
.pillar:hover { background: var(--bg-off); }
.pillar-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  margin-bottom: 14px;
}
.pillar h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.pillar p {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* Audience */
.audience-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}
.audience-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.aud-icon {
  width: 42px; height: 42px;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.aud-icon svg {
  width: 19px; height: 19px;
  stroke: var(--ink); fill: none;
  stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.audience-item strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.audience-item p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin: 0;
}

/* Philosophy block */
.philosophy {
  background: var(--bg-dark);
  border-radius: 14px;
  padding: 52px 48px;
  margin-bottom: 52px;
}
.philosophy .tag-label { color: #555; }
.philosophy h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 12px 0 20px;
}
.philosophy p {
  font-size: 15px;
  color: #999;
  line-height: 1.78;
  margin-bottom: 14px;
  max-width: 640px;
}

/* About CTA */
.about-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.about-cta h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-cta p { font-size: 14px; color: var(--ink-mid); }
.cta-btn {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--ink);
  color: #fff;
  padding: 11px 22px;
  border-radius: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}
.cta-btn:hover { background: #333; }
.cta-email {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-email:hover { color: var(--ink); }

/* ────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────── */
.contact-body { animation: fadeUp 0.5s 0.08s ease both; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.cb-icon {
  width: 40px; height: 40px;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cb-icon svg {
  width: 18px; height: 18px;
  stroke: var(--ink); fill: none;
  stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.contact-block h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.1px;
  margin-bottom: 4px;
}
.contact-block p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 8px;
}
.contact-block p:last-child { margin-bottom: 0; }
.contact-link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-link:hover { color: #444; }
.contact-link-soft {
  font-size: 13px;
  color: var(--ink-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-link-soft:hover { color: var(--ink); }

/* Reasons panel */
.contact-panel {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.contact-panel h3 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
}
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
}
.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.reason-dot {
  width: 5px; height: 5px;
  background: var(--ink-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.contact-note {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.6;
}
.contact-note strong { font-weight: 600; color: var(--ink); }

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: #666;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 28px 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-dark);
  flex-wrap: wrap;
}
.footer-brand .brand { color: #fff; font-size: 17px; }
.footer-brand .brand span { font-weight: 300; }
.footer-brand p {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
  max-width: 220px;
  line-height: 1.55;
}
.footer-nav h4 {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { font-size: 13.5px; color: #666; transition: color 0.15s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 12px; color: #3A3A3A; }
.footer-email a { font-size: 12px; color: #444; }
.footer-email a:hover { color: #fff; }

/* ────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 800px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  main { padding: 36px 18px 72px; }
  .header-inner { padding: 0 18px; }
  .footer-inner { padding: 40px 18px 28px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cards-grid { grid-template-columns: 1fr; }
  .home-hero h1 { letter-spacing: -1.5px; }
  .philosophy { padding: 36px 24px; }
  .header-tag { display: none; }
}
