:root {
  --time-red: #e50914;
  --ink: #111111;
  --ink-2: #222222;
  --muted: #666666;
  --paper: #ffffff;
  --paper-2: #f6f6f6;
  --border: #e6e6e6;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}

/* TIME-style frame with red border */
.frame {
  max-width: 980px;
  margin: 10px auto;
  border: 10px solid var(--time-red);
  background: var(--paper);
}

/* Masthead */
.masthead {
  border-bottom: 1px solid var(--border);
  padding: 12px 18px;
}
.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brandmark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.brand-text .title {
  margin: 0;
  font-family: Merriweather, Georgia, "Times New Roman", Times, serif;
  letter-spacing: 2px;
  font-weight: 900;
  font-size: 20px;
}
.brand-text .subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.nav {
  display: flex;
  gap: 16px;
}
.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
}
.nav a:hover { color: var(--time-red); }
.nav-external { opacity: 0.9; }

/* Hero */
.hero {
  padding: 32px 18px 18px;
}
.container {
  max-width: 820px;
  margin: 0 auto;
}
.hero-title {
  font-family: Merriweather, Georgia, "Times New Roman", Times, serif;
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 10px 0;
}
.hero-tagline {
  margin: 0 0 16px 0;
  color: var(--ink-2);
  font-size: 15px;
}
.cta-group {
  display: flex;
  gap: 10px;
}
.btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.btn-primary {
  background: var(--time-red);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.btn.is-disabled,
.btn[aria-disabled="true"] {
  background: #e0e0e0 !important;
  color: #9b9b9b !important;
  border-color: #e0e0e0 !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.8;
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--ink);
  background: transparent;
}

/* Section base */
.section {
  padding: 24px 18px;
  border-top: 1px solid var(--border);
}
.section-title {
  font-family: Merriweather, Georgia, "Times New Roman", Times, serif;
  margin: 0 0 10px 0;
  font-size: 20px;
}

/* Features */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-item { padding: 10px 0; }
.feature-item + .feature-item { border-top: 1px solid var(--border); }
.kicker { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.feature-line { font-size: 15px; color: var(--ink-2); }

/* How */
.how-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.how-text {
  order: 1;
}
.how-image {
  order: 2;
  text-align: center;
}
.how-image img {
  max-width: 100%;
  height: auto;
}
.steps {
  margin: 0;
  padding-left: 18px;
}
.note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* FAQ */
.faq details {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
}
.faq details + details { margin-top: 10px; }
.faq summary {
  cursor: pointer;
  font-weight: 600;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 14px 18px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  font-family: Merriweather, Georgia, "Times New Roman", Times, serif;
  letter-spacing: 2px;
  font-weight: 900;
}
.footer-copy { color: var(--muted); font-size: 13px; }

/* Responsive */
@media (max-width: 840px) {
  .hero-title { font-size: 24px; }
  .masthead-inner { flex-direction: column; align-items: flex-start; }
  .nav { flex-wrap: wrap; }
}


