/* TEEDAY — shared styles for holding page + legal pages */

:root {
  --grey-900: #0a0a0a;
  --grey-700: #404040;
  --grey-600: #525252;
  --grey-500: #737373;
  --grey-400: #a3a3a3;
  --grey-300: #d4d4d4;
  --grey-200: #e5e5e5;
  --grey-100: #f5f5f4;
  --bg: #fafaf9;
  --green: #14532d;
}

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

html, body {
  font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--grey-900);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
}

/* === HOLDING PAGE LAYOUT === */

.holding-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.holding-content {
  max-width: 560px;
  text-align: center;
}

.wordmark {
  font-weight: 700;
  font-size: clamp(56px, 9vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--grey-900);
  margin-bottom: 28px;
}

.tagline {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 400;
  color: var(--grey-700);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.description {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--grey-500);
  margin-bottom: 40px;
}

.status {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-700);
  margin-bottom: 36px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px;
  vertical-align: 1px;
}

.contact {
  font-size: 15px;
  color: var(--grey-500);
}

.contact a {
  color: var(--grey-900);
  text-decoration: none;
  border-bottom: 1px solid var(--grey-300);
  padding-bottom: 1px;
  transition: border-color 0.15s;
}

.contact a:hover {
  border-bottom-color: var(--grey-900);
}

/* === LEGAL PAGE LAYOUT === */

.legal-header {
  border-bottom: 1px solid var(--grey-200);
  background: var(--bg);
}

.legal-header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-header-wordmark {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--grey-900);
  text-decoration: none;
}

.legal-header-nav {
  display: flex;
  gap: 24px;
}

.legal-header-nav a {
  font-size: 14px;
  color: var(--grey-600);
  text-decoration: none;
  transition: color 0.15s;
}

.legal-header-nav a:hover,
.legal-header-nav a.active {
  color: var(--grey-900);
}

.legal-main {
  flex: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  width: 100%;
}

.legal-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--grey-900);
}

.legal-effective {
  font-size: 14px;
  color: var(--grey-500);
  margin-bottom: 48px;
}

.legal-main h2 {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--grey-900);
}

.legal-main h2:first-of-type {
  margin-top: 0;
}

.legal-main h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--grey-900);
}

.legal-main p,
.legal-main ul,
.legal-main ol {
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-700);
  margin-bottom: 16px;
}

.legal-main ul,
.legal-main ol {
  padding-left: 24px;
}

.legal-main li {
  margin-bottom: 8px;
}

.legal-main strong {
  color: var(--grey-900);
  font-weight: 600;
}

.legal-main a {
  color: var(--grey-900);
  text-decoration: underline;
  text-decoration-color: var(--grey-300);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s;
}

.legal-main a:hover {
  text-decoration-color: var(--grey-900);
}

.legal-callout {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
}

.legal-callout p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--grey-600);
}

/* === FAQ === */

.faq-item {
  border-bottom: 1px solid var(--grey-200);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--grey-900);
}

.faq-item p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* === FOOTER === */

footer {
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--grey-500);
  border-top: 1px solid var(--grey-200);
}

footer .footer-links {
  margin-top: 8px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: var(--grey-600);
  text-decoration: none;
  transition: color 0.15s;
}

footer .footer-links a:hover {
  color: var(--grey-900);
}

@media (max-width: 480px) {
  .wordmark { letter-spacing: -0.03em; }
  .holding-container { padding: 24px 20px; }
  .legal-main { padding: 40px 20px 60px; }
  .legal-header-nav { gap: 16px; }
}
