/* =====================
/* =====================
   THE MAKER TOOLS — CORE
   ===================== */

:root {
  --bg: #f7f7f6;
  /* --panel: #ffffff; */
  /* --panel: #00c896; */
  --panel: #7fe5cc;
  /* --panel-soft: #f3f4f6; */
  --panel-soft: ##b3ffec;
  --text: #1f2933;
  --header-text-lt: rgba(255, 255, 255, .85);
  --body: #374151;
  --muted: #6b7280;
  --body-text-lt: rgb(217 247 239);
  /* --accent: #f59e0b; */
  --accent: #ffbe00;
  /* --accent-strong: #d97706; */
  --accent-strong: #ffd600;
  --accent-soft: rgba(245, 158, 11, .12);
  --border: #e5e7eb;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(31, 41, 51, .12);
}

:target {
  scroll-margin-top: 90px; /* adjust to your header height */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  /* font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif; */
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  line-height: 1.22;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.2rem; }

p {
  color: var(--body);
  /* max-width: 65ch; */
}

.lt-text{
	color: var(--body-text-lt);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1.5rem;
}

.narrow { max-width: 720px; }
.center { text-align: center; }

/* =====================
   HEADER
   ===================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgb(217 247 239);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1.2rem;
}

.logo {
  font-weight: 700;
  letter-spacing: .5px;
}

.logo img {
  height: 34px;
  display: block;
}

nav a {
  margin-left: 1.5rem;
  font-size: .95rem;
  color: var(--muted);
}

nav a:hover {
  color: var(--accent-strong);
}

/* =====================
   BUTTONS
   ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 6px 16px rgba(31, 41, 51, .12);
}

.btn.primary,
.btn.btn-primary {
  background: var(--accent);
  color: #1f2933;
  border: none;
  box-shadow: 0 14px 32px rgba(245, 158, 11, .28);
}

.btn.btn-outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
  box-shadow: none;
}

.btn.btn-outline:hover {
  background: var(--panel-soft);
}

.btn.ghost:hover {
  background: var(--panel-soft);
}

.btn.primary:hover,
.btn.btn-primary:hover {
  background: var(--accent-strong);
  box-shadow: 0 18px 36px rgba(31, 41, 51, .18);
}

.btn.large {
  font-size: 1.05rem;
  padding: 1rem 1.8rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button-group {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.button-group .btn {
  min-width: 200px;
}

@media (max-width: 640px) {
  .button-group {
    flex-direction: column;
  }

  .button-group .btn {
    width: 100%;
  }
}

/* =====================
   SECTIONS
   ===================== */

.section { padding: 1rem 0; }

.content-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.75rem 2.4rem;
}

.content-panel h1,
.content-panel h2,
.content-panel h3 {
  margin-top: 0;
}

.policy-grid {
  display: grid;
  gap: 1.5rem;
}

.policy-grid ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  align-items: start;
}

/* .image-placeholder {
  width: 100%;
  min-height: 180px;
  border: 2px dashed var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, .6);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
} */

.image-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}

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


.muted {
  background: var(--panel-soft);
}

/* =====================
   CARDS
   ===================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
  align-items: start;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(31, 41, 51, .08);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: .5rem;
}

.card h3 {
  margin: 0 0 .35rem;
  font-size: 1.08rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #111827;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 18px 55px rgba(31, 41, 51, .14);
}

.card p {
  color: var(--body);
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 1.1rem;
}

.upcoming-panel {
  background: var(--panel);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.upcoming-card {
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  background: var(--panel-soft);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.upcoming-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.upcoming-card p {
  margin: 0;
  color: var(--body);
}

.status-pill {
  display: inline-block;
  align-self: flex-start;
  padding: .25rem .6rem;
  border-radius: .6rem;
  background: rgba(107, 114, 128, .18);
  color: var(--muted);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .02em;
}

.hero-feature-grid .card {
  height: 100%;
  gap: .4rem;
}

.hero-feature-grid .card.span-2 { grid-row: span 2; }
.hero-feature-grid .card.span-3 { grid-row: span 3; }

.pill {
  display: inline-block;
  font-weight: 600;
  font-style: italic;
  font-size: .75rem;
  padding: .25rem .6rem;
   border-radius: .6rem;
  background: #e8f5ec;
  color: #14532d;
  box-shadow: none;
  border: 1px solid rgba(20, 83, 45, .2);
}

.muted-pill {
  background: rgba(55, 65, 81, .12);
  color: var(--muted);
}

.pill.contrast {
  background: var(--text);
  color: var(--panel-soft);
  box-shadow: none;
}

.pill.soft {
  background: transparent;
  color: #1f2933;
  border: 1px solid #9ca3af;
  box-shadow: none;
}

.primary-card {
  transform: scale(1.05);
  padding: 1.65rem;
}

.primary-card:hover {
  transform: scale(1.05) translateY(-6px);
}

.credibility {
  margin-top: 1.1rem;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  display: block;
  width: 100%;
}

.metric-line {
  margin: -.4rem 0 .2rem;
  color: var(--text);
  font-weight: 700;
}

.cta-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  gap: .4rem;
  align-items: center;
}

.cta-link:hover { color: var(--accent); }

/* =====================
   LISTS / COLUMNS
   ===================== */

.columns {
  columns: 2;
  gap: 2rem;
}

.columns li {
  margin-bottom: .6rem;
}

/* =====================
   FORMS
   ===================== */

.signup {
  display: flex;
  gap: .75rem;
  max-width: 420px;
  margin: auto;
}

.signup input {
  flex: 1;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
}

.ml-embedded {
  margin: 1.5rem auto 0;
  max-width: 520px;
}

/* =====================
   FOOTER
   ===================== */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
/* =====================
   Updated future tools front page panel
   ===================== */

.upcoming-header {
  text-align: center;
  margin-bottom: 2rem;
}

.upcoming-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* LEFT side = table */
.upcoming-table {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
  overflow: hidden;
}

.tool-row {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border, #e5e7eb);
}

.tool-row:last-child {
  border-bottom: none;
}
.tool-row:last-child {
  border-bottom: none;
}

.tool-meta h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.tool-meta p {
  margin: 0;
  color: var(--muted, #6b7280);
  font-size: 0.9rem;
}

/* RIGHT side = sticky-ish panel */
.upcoming-signup {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--panel, #fafafa);
}

.upcoming-signup h3 {
  margin-top: 0;
}



/* Mobile */
@media (max-width: 900px) {
  .upcoming-layout {
    grid-template-columns: 1fr;
  }

  .tool-row {
    grid-template-columns: 1fr;
  }
}
.hero-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.profile-image {
  border-radius: 50%;
  object-fit: cover;
}

/* Mobile: stack */
@media (max-width: 640px) {
  .hero-header {
    flex-direction: column;
    text-align: center;
  }
}
/* =====================
   CAROUSEL (SCROLL-SNAP)
   ===================== */

.carousel {
  position: relative;
  margin-top: 2rem;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

/* Hide scrollbar but keep functionality */
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  scrollbar-width: none;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  text-align: center;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
}

.carousel-slide figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.carousel-btn {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 8px;
}



/* card image for index page */
.card.has-media {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.card-media {
  width: 100%;
  height: auto;
  max-height: 360px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin: 0;

  /* visual separation */
  border-bottom: 1px solid rgba(0,0,0,0.08);

  /* soften exit */
  mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

.card .cta-link {
  margin-top: auto;
}


/* =====================
   HERO
   ===================== */


.hero {
  padding: 1.5rem 0 1.5rem;
  position: relative;
}

.hero-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(31, 41, 51, .12);
  padding: 3rem 2.6rem 3.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-heading {
  text-align: center;
  color: var(--text);
}

.hero-heading h1 {
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 0;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.08;
}

.hero-heading .subtitle {
  margin: .35rem auto .8rem;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: -.01em;
  color: var(--muted);
}

.intro {
  margin: 0 auto;
  color: var(--body);
  font-size: 1.02rem;
  font-weight: 600;
}

.subtitle {
 /* max-width: 640px;*/
  margin: 1rem 0 1.75rem;
}


.hero-feature-grid {
  margin-top: 0;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 220px;
  align-items: stretch;
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem;
}

.hero-divider {
  width: 110px;
  height: 1px;
  margin: .6rem auto 1.6rem;
  background: linear-gradient(90deg, transparent, rgba(31, 41, 51, .28), transparent);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1rem;
  display: grid;
  gap: .4rem;
  justify-items: center;
  color: var(--body);
}

.hero-list li {
  max-width: 62ch;
  text-align: center;
  font-weight: 600;
}

.meta, .fine {
  font-size: .85rem;
  color: var(--muted);
}

/* =====================
   HERO FIX (DESKTOP + MOBILE)
   ===================== */

.hero {
  padding: 1.5rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: 3rem;
  align-items: center;
}

/* .hero-media img {
  width: 100%;
  max-width: 880px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25); 
} */

/* Mobile */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: 2.5rem 0 2.5rem;
  }

  .hero-media img {
    max-height: 420px;
    object-fit: contain;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .hero ul {
    padding-left: 1.1rem;
  }
}

/* carousel fix */
.content-panel.center {
  padding: 2.5rem 2rem;
}

@media (max-width: 640px) {
  .content-panel.center {
    padding: 1.75rem 1.25rem;
  }
}

/* === Carousel === */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  text-align: center;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
  display: block;
}



/* =====================
   PLAN COMPARISON
   ===================== */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.plan-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.plan-card.pro,.plan-card.free{
  background: white;
}

.plan-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.plan-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.plan-card li {
  padding-left: 1.4rem;
  margin-bottom: .6rem;
  position: relative;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.plan-card.pro {
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(245,158,11,.35);
}

.plan-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* Mobile */
@media (max-width: 800px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}


.feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}



.card.has-media {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
}

.card-media {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  margin-top: 1rem;
}


@media (max-width: 768px) {
  .hero-grid,
  .hero-panel {
    display: block;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
  }

  .card.span-2 {
    grid-column: auto;
  }
}
.carousel-slide figcaption {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.75rem;
}


/* =====================
   HERO — SPLIT LAYOUT
   ===================== */

.hero-split {
  background: var(--panel);
  padding: 1.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero-copy .subtitle {
  font-size: 1.1rem;
  max-width: 46ch;
}

.hero-media img {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  /* box-shadow: 0 30px 80px rgba(0,0,0,.25); */
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .hero-media img {
    max-height: 420px;
    object-fit: contain;
  }
}
/* =====================
   PRODUCT MINI-HERO
   ===================== */

.tool-row-media img {
  max-height: 220px;
}

.product-hero {
  padding: 3.5rem 0;
}

.product-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Icon */
.product-icon img {
  width: 460px;
  height: auto;
  display: block;
}

/* Copy */
.product-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
}

.product-copy p {
  max-width: 56ch;
  font-weight: 600;
}

.product-copy ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--body);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 720px) {
  .product-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-icon img {
    margin: 0 auto;
    width: 50%;
  }

  .product-copy ul {
    text-align: left;
    margin-inline: auto;
    max-width: 420px;
  }
}


/* Free app future tools - wrap up */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal {
  background: var(--panel);
  border-radius: 14px;
  padding: 2rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.modal h3 {
  margin-top: 0;
}

.modal p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}


/* Image zoom */

.zoomable {
  cursor: zoom-in;
}

.image-modal::backdrop {
  background: rgba(0,0,0,.85);
}

.image-modal {
  border: none;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  background: transparent;
}

.image-modal img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  touch-action: pan-x pan-y;
}

.image-modal .close {
  position: fixed;
  top: 12px;
  right: 14px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  border: none;
  border-radius: 999px;
  background: rgba(0,0,0,.6);
  color: white;
  cursor: pointer;
}

.modal-backdrop[hidden] {
  display: none !important;
}


/* Page Specific CSS */

.page-tools .tool-row-media img {
  max-width: 260px;
}



.video-placeholder {
  width: 100%;
  max-width: 1200px;     /* optional */
  margin: 1rem auto;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-hero {
  margin: 1rem auto;
  padding: 0;
  max-width: 100%;
}

@media (max-width: 640px) {
  .content-panel.center {
    padding: 1rem 0.75rem;
  }
}
@media (min-width: 720px) {
  .video-frame {
    max-width: 1000px;
    margin-inline: auto;
  }
}



/* 
.video-placeholder {
  max-width: 960px;
  margin: 0 auto 3rem;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #0f172a;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #e5e7eb;
  font-weight: 600;
  box-shadow: var(--shadow);
  cursor: pointer;
} */

/* ----- Overlay + blur ----- */
.tmt-access-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px) brightness(0.7);
  background: rgba(0,0,0,0.35);
}

.tmt-hidden {
  display: none !important;
}

body.tmt-modal-open {
  overflow: hidden;
}

/* ----- Modal ----- */
.tmt-access-modal {
  background: #fff;
  width: 360px;
  max-width: 90vw;
  border-radius: 10px;
  padding: 24px 28px;
  position: relative;
  box-shadow:
    0 3px 10px rgba(0,0,0,0.08),
    0 12px 28px rgba(0,0,0,0.12);
}

.tmt-access-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tmt-access-close:hover,
.tmt-access-close:focus-visible {
  background: #e5e7eb;
}

/* ----- Typography ----- */
.tmt-access-title {
  margin: 0 0 8px 0;
  font-size: 1.35rem;
  font-weight: 600;
}

.tmt-access-sub {
  margin: 0 0 18px 0;
  font-size: 0.95rem;
  color: #444;
}

.tmt-access-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #666;
}

/* ----- Form ----- */
.tmt-access-form {
  display: flex;
  gap: 8px;
}

.tmt-access-input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
}

.tmt-access-btn {
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

.tmt-access-btn:hover {
  background: #000;
}
.price-new {
  margin-left: 6px;
  font-size: large;

}
.promo-note{
      text-align: center;
    font-size: large;

}

.seo{
	display: none;
}