:root {
  --t2n-bg: #0f1424;
  --t2n-bg-alt: #161d32;
  --t2n-panel: #1c2540;
  --t2n-text: #f4f6fb;
  --t2n-muted: #9aa6c4;
  --t2n-coral: #ff6b4a;
  --t2n-coral-dim: #e05538;
  --t2n-lilac: #a78bfa;
  --t2n-border: rgba(167, 139, 250, 0.2);
  --t2n-max: 920px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--t2n-bg);
  color: var(--t2n-text);
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  background-image:
    radial-gradient(ellipse 80% 45% at 50% -10%, rgba(167, 139, 250, 0.14), transparent),
    radial-gradient(circle at 85% 60%, rgba(255, 107, 74, 0.07), transparent 45%);
}

.t2n-skip {
  position: absolute;
  left: -9999px;
  top: 0;
}
.t2n-skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--t2n-coral);
  color: #fff;
  border-radius: 8px;
}

.t2n-shell {
  width: min(100% - 2rem, var(--t2n-max));
  margin-inline: auto;
}

/* Header */
.t2n-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--t2n-border);
  background: rgba(15, 20, 36, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.t2n-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  color: var(--t2n-coral);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.t2n-menu-btn {
  display: none;
  background: var(--t2n-panel);
  border: 1px solid var(--t2n-border);
  color: var(--t2n-text);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  min-height: 44px;
}

.t2n-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  align-items: center;
}

.t2n-nav a {
  color: var(--t2n-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}
.t2n-nav a:hover { color: var(--t2n-text); }

.t2n-nav-cta {
  color: #fff !important;
  background: var(--t2n-coral);
  padding: 0.45rem 1rem !important;
  border-radius: 999px;
}

/* Hero */
.t2n-main { padding-bottom: 1rem; }

.t2n-hero {
  padding: clamp(2rem, 6vw, 3rem) 0 1rem;
  text-align: center;
}

.t2n-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--t2n-lilac);
  margin: 0 0 0.75rem;
}

.t2n-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
  font-weight: 700;
  max-width: 18ch;
  margin-inline: auto;
}

.t2n-brand { color: var(--t2n-coral); }

.t2n-lead {
  color: var(--t2n-muted);
  font-size: clamp(1rem, 2.5vw, 1.08rem);
  max-width: 40ch;
  margin: 0 auto;
}

/* Pick gallery */
.t2n-pick {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.t2n-h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  text-align: center;
  margin: 0 0 0.45rem;
}

.t2n-h2--left { text-align: left; }

.t2n-sub {
  text-align: center;
  color: var(--t2n-muted);
  font-size: 0.95rem;
  max-width: 42ch;
  margin: 0 auto 1.5rem;
}

.t2n-gallery {
  display: flex;
  justify-content: center;
  gap: clamp(0.65rem, 2.5vw, 1rem);
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.t2n-pick-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  flex: 0 1 150px;
  transition: transform 0.2s;
}

.t2n-pick-card:hover { transform: translateY(-4px); }

.t2n-ph {
  margin: 0;
  width: clamp(110px, 28vw, 150px);
  height: clamp(110px, 28vw, 150px);
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid var(--t2n-border);
  background: var(--t2n-panel);
  box-shadow: 0 12px 32px rgba(255, 107, 74, 0.15);
}

.t2n-ph img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t2n-pick-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--t2n-lilac);
}

.t2n-cta-row { text-align: center; }

/* About & intent */
.t2n-about {
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-bottom: 1px solid var(--t2n-border);
}

.t2n-about-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.t2n-about-lead {
  color: var(--t2n-muted);
  font-size: 0.98rem;
  max-width: 48ch;
  margin: 0 0 0.75rem;
}

.t2n-about-text {
  color: var(--t2n-muted);
  font-size: 0.92rem;
  max-width: 48ch;
  margin: 0;
}

.t2n-brand-ph {
  margin: 0;
  width: clamp(120px, 28vw, 180px);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--t2n-border);
  box-shadow: 0 12px 32px rgba(255, 107, 74, 0.12);
}

.t2n-brand-ph img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.t2n-intent {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.06), transparent);
}

.t2n-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  justify-content: center;
}

.t2n-tags li {
  font-size: 0.86rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--t2n-border);
  background: var(--t2n-panel);
  color: var(--t2n-text);
}

.t2n-intent-note {
  text-align: center;
  color: var(--t2n-muted);
  font-size: 0.94rem;
  max-width: 52ch;
  margin: 0 auto;
}

/* Buttons */
.t2n-btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  min-height: 48px;
  line-height: 1.25;
  font-size: 1.05rem;
}

.t2n-btn--primary {
  background: var(--t2n-coral);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
}

.t2n-btn--primary:hover {
  background: var(--t2n-coral-dim);
  transform: translateY(-2px);
}

.t2n-btn--wide { width: min(100%, 340px); }

/* Features band */
.t2n-band {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: var(--t2n-bg-alt);
  border-block: 1px solid var(--t2n-border);
}

.t2n-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.t2n-feat {
  background: var(--t2n-panel);
  border: 1px solid var(--t2n-border);
  border-radius: 14px;
  padding: 1.1rem;
  text-align: center;
}

.t2n-feat h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: var(--t2n-coral);
}

.t2n-feat p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--t2n-muted);
}

/* Steps */
.t2n-steps {
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.t2n-steps-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.t2n-ol {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--t2n-muted);
}

.t2n-ol li { margin-bottom: 0.65rem; }
.t2n-ol strong { color: var(--t2n-text); }

.t2n-banner-ph {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--t2n-border);
}

.t2n-banner-ph img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 1080;
  max-height: min(58vh, 520px);
  object-fit: cover;
  object-position: center top;
}

.t2n-faq-intro {
  text-align: center;
  color: var(--t2n-muted);
  font-size: 0.92rem;
  margin: 0 0 1rem;
}

/* FAQ */
.t2n-faq {
  padding: clamp(2rem, 5vw, 3rem) 0 2.5rem;
}

.t2n-faq-box { max-width: 640px; }

.t2n-faq-item {
  border: 1px solid var(--t2n-border);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  background: var(--t2n-panel);
}

.t2n-faq-item summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.t2n-faq-item summary::-webkit-details-marker { display: none; }

.t2n-faq-item p {
  padding: 0 1rem 0.85rem;
  margin: 0;
  color: var(--t2n-muted);
  font-size: 0.92rem;
}

/* Footer */
.t2n-footer {
  padding: 1.75rem 1rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 0.85rem;
  color: var(--t2n-muted);
  border-top: 1px solid var(--t2n-border);
}

.t2n-footer p { margin: 0 0 0.5rem; }

.t2n-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.t2n-footer-links a {
  color: var(--t2n-lilac);
  text-decoration: none;
}

.t2n-dock { display: none; }

@media (max-width: 720px) {
  .t2n-feats { grid-template-columns: 1fr; }
  .t2n-steps-inner,
  .t2n-about-grid { grid-template-columns: 1fr; }
  .t2n-banner-ph { order: -1; max-width: min(100%, 340px); margin-inline: auto; }
  .t2n-brand-ph { order: -1; margin-inline: auto; }
  .t2n-h2--left { text-align: center; }
  .t2n-about-lead,
  .t2n-about-text { max-width: none; text-align: center; }
}

@media (max-width: 640px) {
  body { padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px)); }

  .t2n-shell { width: min(100% - 1.25rem, var(--t2n-max)); }

  .t2n-hero h1 { max-width: none; font-size: clamp(1.5rem, 6vw, 2rem); }

  .t2n-lead { max-width: none; }

  .t2n-menu-btn { display: block; margin-left: auto; }

  .t2n-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--t2n-bg);
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--t2n-border);
  }

  .t2n-nav.is-open { display: flex; }
  .t2n-nav a { padding: 0.6rem 0; border-bottom: 1px solid var(--t2n-border); min-height: 44px; display: flex; align-items: center; }
  .t2n-nav-cta { justify-content: center; margin-top: 0.35rem; }

  .t2n-gallery {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 0.25rem 0.65rem;
    margin-inline: -0.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .t2n-gallery::-webkit-scrollbar { display: none; }

  .t2n-pick-card { scroll-snap-align: center; flex: 0 0 auto; }

  .t2n-ph {
    width: clamp(120px, 32vw, 150px);
    height: clamp(120px, 32vw, 150px);
  }

  .t2n-tags { justify-content: flex-start; }
  .t2n-intent-note { text-align: left; max-width: none; }

  .t2n-btn--wide { width: 100%; max-width: 420px; }

  .t2n-steps .t2n-btn--primary { width: 100%; max-width: 420px; }

  .t2n-faq-item summary { padding: 0.85rem 0.9rem; font-size: 0.95rem; }

  .t2n-dock {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(15, 20, 36, 0.97);
    border-top: 1px solid var(--t2n-border);
    text-align: center;
    z-index: 40;
    backdrop-filter: blur(8px);
  }

  .t2n-dock .t2n-btn { width: 100%; max-width: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .t2n-btn, .t2n-pick-card { transition: none; }
}
