:root {
  --tbw-bg: #0c1222;
  --tbw-bg-soft: #111827;
  --tbw-surface: rgba(30, 41, 59, 0.88);
  --tbw-surface-alt: rgba(14, 20, 38, 0.82);
  --tbw-surface-deep: rgba(10, 16, 30, 0.88);
  --tbw-border: rgba(34, 197, 94, 0.15);
  --tbw-border-strong: rgba(34, 197, 94, 0.35);
  --tbw-green: #16a34a;
  --tbw-green-bright: #22c55e;
  --tbw-green-dark: #15803d;
  --tbw-amber: #eab308;
  --tbw-text: #e2e8f0;
  --tbw-text-soft: #94a3b8;
  --tbw-shadow: 0 20px 50px rgba(1, 6, 17, 0.45);
  --tbw-radius: 12px;
  --tbw-radius-sm: 8px;
  --tbw-container: min(1160px, calc(100% - 32px));
  --tbw-topbar-h: 36px;
  --tbw-header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--tbw-text);
  font-family: "Barlow", sans-serif;
  line-height: 1.6;
  background: url("bg2.webp") center / cover fixed no-repeat;
  background-color: var(--tbw-bg);
}

body.tbw-overlay-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.tbw-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tbw-container {
  width: var(--tbw-container);
  margin: 0 auto;
}

.tbw-topbar {
  background: rgba(3, 7, 18, 0.94);
  border-bottom: 1px solid rgba(34, 197, 94, 0.12);
  min-height: var(--tbw-topbar-h);
}

.tbw-topbar-inner {
  min-height: var(--tbw-topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--tbw-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tbw-topbar-sep {
  color: rgba(148, 163, 184, 0.6);
}

.tbw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border-bottom: 2px solid transparent;
}

.tbw-header.tbw-header-scrolled,
.tbw-header.tbw-header-solid {
  background: #000;
  border-bottom-color: var(--tbw-green-bright);
  box-shadow: 0 14px 30px rgba(3, 7, 18, 0.34);
}

.tbw-header-inner {
  min-height: var(--tbw-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0.95rem 0;
}

.tbw-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.tbw-logo-mark {
  position: relative;
  width: 26px;
  height: 18px;
  flex-shrink: 0;
}

.tbw-logo-mark::before,
.tbw-logo-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 3px solid var(--tbw-green-bright);
  border-right: 3px solid var(--tbw-green-bright);
  transform: translateY(-50%) rotate(45deg);
}

.tbw-logo-mark::before {
  left: 0;
}

.tbw-logo-mark::after {
  right: 0;
}

.tbw-logo-text,
.tbw-section-title,
.tbw-hero-title,
.tbw-card-title,
.tbw-stat-value,
.tbw-mini-hero h1,
.tbw-legal h1,
.tbw-legal h2,
.tbw-contact-panel h2,
.tbw-footer-title {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tbw-logo-text {
  color: var(--tbw-green-bright);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.tbw-nav-toggle {
  display: none;
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(30, 41, 59, 0.72);
  color: var(--tbw-text);
  width: 46px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tbw-nav-toggle span,
.tbw-nav-toggle::before,
.tbw-nav-toggle::after {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.tbw-nav-toggle span {
  margin: 4px 0;
}

.tbw-nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.tbw-nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.tbw-nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.tbw-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tbw-nav a {
  position: relative;
  padding: 0.35rem 0;
  color: var(--tbw-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  font-weight: 600;
}

.tbw-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--tbw-green-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.tbw-nav a:hover::after,
.tbw-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.tbw-hero,
.tbw-mini-hero {
  position: relative;
  display: flex;
  align-items: center;
}

.tbw-hero {
  min-height: calc(100vh - var(--tbw-topbar-h));
  justify-content: center;
  background: transparent;
}

.tbw-mini-hero {
  min-height: 320px;
}

.tbw-hero::before,
.tbw-mini-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 34, 0.8);
  z-index: 0;
}

.tbw-hero::after,
.tbw-mini-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(34, 197, 94, 0.03) 0px,
    rgba(34, 197, 94, 0.03) 1px,
    transparent 1px,
    transparent 24px
  );
  pointer-events: none;
}

.tbw-hero > *,
.tbw-mini-hero > * {
  position: relative;
  z-index: 1;
}

.tbw-hero-content {
  max-width: 860px;
  text-align: center;
  padding: 4rem 0 5rem;
}

.tbw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(234, 179, 8, 0.28);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: var(--tbw-amber);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 1.1rem;
}

.tbw-hero-title,
.tbw-mini-hero h1,
.tbw-legal h1 {
  margin: 0;
  line-height: 0.96;
}

.tbw-hero-title {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  margin-bottom: 1.1rem;
}

.tbw-hero-copy,
.tbw-mini-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--tbw-text-soft);
}

.tbw-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 2rem 0 2.25rem;
  flex-wrap: wrap;
}

.tbw-cta,
.tbw-cta-secondary,
.tbw-cookie-action,
.tbw-age-action,
.tbw-form-submit {
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.tbw-cta,
.tbw-form-submit,
.tbw-age-action[data-tbw-age-confirm="true"],
.tbw-cookie-action[data-tbw-cookie="accept"] {
  background: var(--tbw-green);
  color: #fff;
}

.tbw-cta:hover,
.tbw-form-submit:hover,
.tbw-age-action[data-tbw-age-confirm="true"]:hover,
.tbw-cookie-action[data-tbw-cookie="accept"]:hover {
  background: var(--tbw-green-dark);
}

.tbw-cta,
.tbw-cta-secondary,
.tbw-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tbw-cta-secondary,
.tbw-age-action[data-tbw-age-confirm="false"],
.tbw-cookie-action[data-tbw-cookie="decline"] {
  background: transparent;
  color: var(--tbw-text);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.tbw-cta-secondary:hover,
.tbw-age-action[data-tbw-age-confirm="false"]:hover,
.tbw-cookie-action[data-tbw-cookie="decline"]:hover {
  border-color: var(--tbw-green-bright);
  color: var(--tbw-green-bright);
}

.tbw-trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tbw-trust-pill {
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--tbw-text);
  background: rgba(34, 197, 94, 0.08);
}

.tbw-section {
  padding: 72px 0;
}

.tbw-cards-section {
  background: rgba(12, 18, 34, 0.8);
}

.tbw-about {
  background: rgba(14, 20, 38, 0.82);
}

.tbw-why {
  background: rgba(10, 16, 30, 0.88);
}

.tbw-pledge {
  background: rgba(16, 22, 40, 0.84);
}

.tbw-disclosure {
  background: rgba(8, 14, 28, 0.9);
}

.tbw-faq {
  background: rgba(12, 18, 34, 0.85);
}

.tbw-footer {
  background: rgba(6, 10, 22, 0.95);
}

.tbw-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.tbw-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tbw-green-bright);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}

.tbw-section-tag::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.tbw-section-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1;
}

.tbw-section-intro {
  margin: 0;
  max-width: 560px;
  color: var(--tbw-text-soft);
}

.tbw-card-list {
  display: grid;
  gap: 16px;
}

.tbw-card {
  background: #1e293b;
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-top: 3px solid #22c55e;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--tbw-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tbw-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.28);
}

.tbw-card-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #22c55e;
  color: #0a0a0a;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tbw-logo-wrap {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.tbw-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.tbw-card-info {
  flex: 1;
  min-width: 0;
}

.tbw-card-title {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1;
}

.tbw-card-rating {
  margin: 0.4rem 0 0.75rem;
  color: var(--tbw-text-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tbw-stars {
  color: var(--tbw-amber);
  letter-spacing: 0.08em;
  font-size: 0.98rem;
}

.tbw-score {
  color: var(--tbw-text);
  font-weight: 700;
}

.tbw-card-offer {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
}

.tbw-card-copy {
  margin: 0.35rem 0 0;
  color: var(--tbw-text-soft);
}

.tbw-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  min-width: 180px;
}

.tbw-card-min {
  color: var(--tbw-text);
  font-weight: 600;
}

.tbw-card-note {
  margin: 0.65rem 0 0;
  color: var(--tbw-text-soft);
  font-size: 0.84rem;
}

.tbw-about-layout,
.tbw-pledge-layout,
.tbw-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.95fr);
  gap: 26px;
}

.tbw-about-panel,
.tbw-aside-card,
.tbw-why-card,
.tbw-disclosure-box,
.tbw-faq-panel,
.tbw-footer-panel,
.tbw-contact-panel,
.tbw-legal-panel {
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid var(--tbw-border);
  border-radius: var(--tbw-radius);
  box-shadow: var(--tbw-shadow);
}

.tbw-about-panel,
.tbw-disclosure-box,
.tbw-contact-panel,
.tbw-legal-panel {
  padding: 26px;
}

.tbw-about-panel p,
.tbw-legal-panel p,
.tbw-contact-panel p,
.tbw-why-card p,
.tbw-aside-card p {
  margin: 0 0 1rem;
  color: var(--tbw-text-soft);
}

.tbw-about-panel p:last-child,
.tbw-legal-panel p:last-child,
.tbw-contact-panel p:last-child,
.tbw-why-card p:last-child,
.tbw-aside-card p:last-child {
  margin-bottom: 0;
}

.tbw-about-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.18), rgba(234, 179, 8, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.tbw-about-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 4px solid var(--tbw-green-bright);
  border-right: 4px solid var(--tbw-green-bright);
  transform: rotate(45deg);
}

.tbw-stat-stack {
  display: grid;
  gap: 14px;
}

.tbw-stat-card {
  padding: 22px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.tbw-stat-value {
  font-size: 2rem;
  color: var(--tbw-green-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tbw-stat-label {
  margin: 0;
  color: var(--tbw-text);
  font-weight: 600;
}

.tbw-stat-copy {
  margin: 0.5rem 0 0;
  color: var(--tbw-text-soft);
}

.tbw-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tbw-why-card {
  padding: 22px;
}

.tbw-why-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.9rem;
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--tbw-green-bright);
  font-size: 1.15rem;
  font-weight: 700;
}

.tbw-why-card h3,
.tbw-aside-card h3,
.tbw-contact-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.45rem;
}

.tbw-pledge-layout {
  align-items: start;
}

.tbw-pledge-copy {
  padding: 26px;
  background: rgba(15, 23, 42, 0.76);
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.14);
  box-shadow: var(--tbw-shadow);
}

.tbw-pledge-copy p {
  margin: 0 0 1rem;
  color: var(--tbw-text-soft);
}

.tbw-pledge-copy p:last-child {
  margin-bottom: 0;
}

.tbw-aside-card {
  padding: 24px;
}

.tbw-disclosure-box {
  border-left: 4px solid var(--tbw-amber);
}

.tbw-disclosure-box h3 {
  margin: 0 0 0.65rem;
  font-size: 1.3rem;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tbw-disclosure-meta {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--tbw-amber);
  font-weight: 600;
}

.tbw-faq-list {
  display: grid;
  gap: 14px;
}

.tbw-faq-panel {
  overflow: hidden;
}

.tbw-faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--tbw-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
}

.tbw-faq-question span:first-child {
  font-weight: 600;
  font-size: 1.05rem;
}

.tbw-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.28);
  display: grid;
  place-items: center;
  color: var(--tbw-green-bright);
  font-size: 1.15rem;
  font-weight: 700;
}

.tbw-faq-question[aria-expanded="true"] .tbw-faq-icon::before {
  content: "-";
}

.tbw-faq-question[aria-expanded="false"] .tbw-faq-icon::before {
  content: "+";
}

.tbw-faq-answer {
  padding: 0 24px 22px;
  color: var(--tbw-text-soft);
}

.tbw-faq-answer p {
  margin: 0;
}

.tbw-footer-main {
  padding: 58px 0 28px;
}

.tbw-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1.2fr;
  gap: 20px;
}

.tbw-footer-panel {
  padding: 22px;
}

.tbw-footer-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.tbw-footer-panel p {
  color: var(--tbw-text-soft);
  margin: 0 0 0.85rem;
}

.tbw-footer-links {
  display: grid;
  gap: 0.7rem;
}

.tbw-footer-links a {
  color: var(--tbw-text);
}

.tbw-footer-links a:hover {
  color: var(--tbw-green-bright);
}

.tbw-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(34, 197, 94, 0.32);
  border-radius: 999px;
  color: var(--tbw-green-bright);
  font-weight: 600;
  font-size: 0.92rem;
}

.tbw-help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tbw-help-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  min-height: 76px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
}

.tbw-help-link img {
  width: 110px;
  height: 44px;
  object-fit: contain;
}

.tbw-footer-bottom {
  border-top: 1px solid rgba(34, 197, 94, 0.12);
  padding: 18px 0 26px;
}

.tbw-footer-bottom p {
  margin: 0.4rem 0;
  color: var(--tbw-text-soft);
}

.tbw-footer-bottom p:last-child {
  color: var(--tbw-text);
}

.tbw-contact-grid {
  display: grid;
  gap: 18px;
}

.tbw-contact-card {
  padding: 22px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid var(--tbw-border);
}

.tbw-contact-form {
  display: grid;
  gap: 16px;
}

.tbw-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tbw-field {
  display: grid;
  gap: 8px;
}

.tbw-field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--tbw-text);
}

.tbw-field input,
.tbw-field textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(8, 14, 28, 0.75);
  color: var(--tbw-text);
}

.tbw-field textarea {
  min-height: 180px;
  resize: vertical;
}

.tbw-form-note,
.tbw-form-status {
  color: var(--tbw-text-soft);
  font-size: 0.92rem;
}

.tbw-form-status {
  min-height: 1.4em;
}

.tbw-mini-hero .tbw-container,
.tbw-hero .tbw-container {
  width: var(--tbw-container);
}

.tbw-mini-hero-content {
  max-width: 740px;
  padding: 3.6rem 0;
}

.tbw-mini-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  margin-bottom: 0.9rem;
}

.tbw-legal {
  background: rgba(12, 18, 34, 0.84);
}

.tbw-legal-grid {
  display: grid;
  gap: 18px;
}

.tbw-legal-panel h2 {
  margin: 0 0 0.9rem;
  font-size: 1.55rem;
}

.tbw-legal-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--tbw-text-soft);
}

.tbw-age-gate,
.tbw-cookie-banner {
  position: fixed;
  z-index: 120;
}

.tbw-age-gate {
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(8px);
  padding: 20px;
}

.tbw-age-gate.tbw-visible {
  display: grid;
}

.tbw-age-box,
.tbw-cookie-box {
  width: min(100%, 460px);
  background: rgba(9, 14, 28, 0.96);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 18px;
  box-shadow: var(--tbw-shadow);
}

.tbw-age-box {
  padding: 28px;
  text-align: center;
}

.tbw-age-box h2,
.tbw-cookie-box p strong {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tbw-age-box h2 {
  margin: 0 0 0.9rem;
  font-size: 2rem;
}

.tbw-age-box p {
  margin: 0 0 1.25rem;
  color: var(--tbw-text-soft);
}

.tbw-age-actions,
.tbw-cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.tbw-age-action,
.tbw-cookie-action {
  min-width: 140px;
  min-height: 46px;
  padding: 12px 18px;
}

.tbw-cookie-banner {
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  justify-content: center;
}

.tbw-cookie-banner.tbw-visible {
  display: flex;
}

.tbw-cookie-box {
  width: min(100%, 720px);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tbw-cookie-box p {
  margin: 0;
  color: var(--tbw-text-soft);
}

.tbw-cookie-box strong {
  color: var(--tbw-text);
}

@media (max-width: 900px) {
  .tbw-header-inner {
    position: relative;
  }

  .tbw-nav-toggle {
    display: inline-flex;
  }

  .tbw-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 12px;
    padding: 16px;
    background: rgba(9, 14, 28, 0.96);
    border: 1px solid rgba(34, 197, 94, 0.16);
    border-radius: 14px;
    box-shadow: var(--tbw-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .tbw-nav.tbw-nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .tbw-about-layout,
  .tbw-pledge-layout,
  .tbw-contact-layout,
  .tbw-footer-grid {
    grid-template-columns: 1fr;
  }

  .tbw-card {
    display: block;
  }

  .tbw-card-actions {
    width: 100%;
    align-items: stretch;
  }

  .tbw-cookie-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 550px) {
  body {
    overflow-x: hidden;
    background-attachment: scroll;
  }

  .tbw-header-inner {
    padding: 0.65rem 0.75rem;
    position: relative;
  }

  .tbw-logo-text {
    font-size: clamp(0.58rem, 2.9vw, 0.78rem);
    letter-spacing: 0.05em;
    word-break: break-word;
  }

  .tbw-nav {
    left: 8px;
    right: 8px;
    padding: 12px;
  }

  .tbw-hero h1 {
    font-size: clamp(1.05rem, 5.8vw, 2rem);
    letter-spacing: 0.055em;
    word-break: break-word;
  }

  .tbw-trust-pills {
    flex-wrap: wrap;
    gap: 8px;
  }

  .tbw-card {
    display: block;
    gap: 12px;
  }

  .tbw-card-actions {
    width: 100%;
    align-items: stretch;
    min-width: 0;
  }

  .tbw-cta {
    width: 100%;
    text-align: center;
  }

  .tbw-logo-wrap {
    width: min(140px, 100%);
    height: auto;
    min-height: 4rem;
  }

  .tbw-card-info {
    min-width: 0;
    width: 100%;
  }

  .tbw-why-grid {
    grid-template-columns: 1fr !important;
  }

  .tbw-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .tbw-card:hover {
    transform: none;
  }

  table {
    font-size: 0.78rem;
    table-layout: fixed;
    width: 100%;
  }

  table th,
  table td {
    padding: 0.5rem 0.4rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .tbw-topbar-inner {
    gap: 6px;
    font-size: 0.72rem;
    padding: 6px 0;
  }

  .tbw-section {
    padding: 56px 0;
  }

  .tbw-hero-content {
    padding: 3rem 0 3.4rem;
  }

  .tbw-mini-hero-content {
    padding: 2.8rem 0;
  }

  .tbw-section-head {
    flex-direction: column;
    align-items: start;
  }

  .tbw-hero-actions,
  .tbw-age-actions,
  .tbw-cookie-actions,
  .tbw-field-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .tbw-hero-actions > *,
  .tbw-age-actions > *,
  .tbw-cookie-actions > * {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .tbw-logo-text {
    font-size: 0.52rem;
    letter-spacing: 0.02em;
  }

  .tbw-hero h1 {
    font-size: clamp(1rem, 5.2vw, 1.75rem);
  }

  .tbw-header-inner {
    padding: 0.55rem;
  }
}
