/*
 * Taghazout.io public shell — 2026-07-28
 * The only global public stylesheet. It owns the document foundation, shared
 * header/menu/footer, theme, common content patterns, consent UI and recovery
 * surfaces. Route applications load their own scoped bundle after this file.
 */

:root {
  --tgz-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tgz-font-display: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif;
  --tgz-font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --tgz-page: #f7efe1;
  --tgz-surface: #fffaf1;
  --tgz-surface-2: #eef8f4;
  --tgz-card: #ffffff;
  --tgz-ink: #07161c;
  --tgz-muted: #566b72;
  --tgz-subtle: #7d6754;
  --tgz-line: rgba(7, 22, 28, .14);
  --tgz-line-strong: rgba(7, 22, 28, .24);
  --tgz-ocean: #0b2d3a;
  --tgz-atlantic: #0f766e;
  --tgz-teal: #20c7b7;
  --tgz-mint: #9af0d8;
  --tgz-copper: #d9791d;
  --tgz-danger: #a63b32;
  --tgz-success: #187754;
  --tgz-shadow-sm: 0 10px 30px rgba(8, 31, 42, .08);
  --tgz-shadow: 0 22px 60px rgba(8, 31, 42, .13);
  --tgz-focus: 0 0 0 4px rgba(32, 199, 183, .25);
  --tgz-radius-sm: 12px;
  --tgz-radius: 18px;
  --tgz-radius-lg: 28px;
  --tgz-max: 1160px;
  --tgz-header-height: 74px;

  /* Compatibility tokens consumed by route-scoped bundles. */
  --tgz-ui-bg: var(--tgz-page);
  --tgz-ui-surface: var(--tgz-surface);
  --tgz-ui-surface-alt: var(--tgz-surface-2);
  --tgz-ui-card: var(--tgz-card);
  --tgz-ui-text: var(--tgz-ink);
  --tgz-ui-muted: var(--tgz-muted);
  --tgz-ui-subtle: var(--tgz-subtle);
  --tgz-ui-line: var(--tgz-line);
  --tgz-ui-line-strong: var(--tgz-line-strong);
  --tgz-ui-primary: var(--tgz-ocean);
  --tgz-ui-primary-hover: #124355;
  --tgz-ui-primary-text: #ffffff;
  --tgz-ui-secondary: #fff0d8;
  --tgz-ui-secondary-text: var(--tgz-ink);
  --tgz-ui-accent: var(--tgz-copper);
  --tgz-ui-accent-hover: #b86216;
  --tgz-ui-accent-text: #ffffff;
  --tgz-ui-teal: var(--tgz-atlantic);
  --tgz-ui-mint: var(--tgz-mint);
  --tgz-ui-danger: var(--tgz-danger);
  --tgz-ui-success: var(--tgz-success);
  --tgz-ui-focus: var(--tgz-teal);
  --tgz-ui-shadow-soft: var(--tgz-shadow-sm);
  --tgz-ui-shadow-strong: var(--tgz-shadow);
  --tgz-ui-radius-xs: 8px;
  --tgz-ui-radius-sm: var(--tgz-radius-sm);
  --tgz-ui-radius-md: var(--tgz-radius);
  --tgz-ui-radius-lg: 24px;
  --tgz-ui-radius-xl: var(--tgz-radius-lg);
  --tgz-ui-radius-pill: 999px;
  --tgz-ui-control-min: 42px;
  --tgz411-header-h: var(--tgz-header-height);

  --tgz-signal-ink: var(--tgz-ink);
  --tgz-signal-ocean: var(--tgz-ocean);
  --tgz-signal-atlantic: var(--tgz-atlantic);
  --tgz-signal-mint: var(--tgz-mint);
  --tgz-signal-sand: var(--tgz-page);
  --tgz-signal-cream: var(--tgz-surface);
  --tgz-signal-copper: var(--tgz-copper);
  --tgz-signal-line: var(--tgz-line);
  --tgz-signal-shadow: var(--tgz-shadow);
  --tgz-signal-focus: var(--tgz-focus);
}

html[data-theme="dark"],
html[data-theme-mode="dark"] {
  --tgz-page: #050b0e;
  --tgz-surface: #0a171c;
  --tgz-surface-2: #10252d;
  --tgz-card: #0d1d23;
  --tgz-ink: #f8f4ec;
  --tgz-muted: rgba(248, 244, 236, .70);
  --tgz-subtle: #d3b782;
  --tgz-line: rgba(154, 240, 216, .15);
  --tgz-line-strong: rgba(154, 240, 216, .28);
  --tgz-ocean: #9af0d8;
  --tgz-atlantic: #56d4c4;
  --tgz-teal: #71dece;
  --tgz-mint: #bdf7e6;
  --tgz-copper: #efa24d;
  --tgz-danger: #ff9687;
  --tgz-success: #82deb2;
  --tgz-shadow-sm: 0 12px 34px rgba(0, 0, 0, .30);
  --tgz-shadow: 0 24px 70px rgba(0, 0, 0, .46);
  --tgz-ui-primary: var(--tgz-mint);
  --tgz-ui-primary-hover: #d1faee;
  --tgz-ui-primary-text: #041114;
  --tgz-ui-secondary: #142b34;
  --tgz-ui-secondary-text: var(--tgz-ink);
  --tgz-ui-accent-text: #071015;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 0;
  color-scheme: light;
  background: var(--tgz-page);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--tgz-header-height) + 16px);
  text-size-adjust: 100%;
}

html[data-theme="dark"],
html[data-theme-mode="dark"] {
  color-scheme: dark;
}

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 6% 4%, rgba(32, 199, 183, .08), transparent 28rem),
    var(--tgz-page);
  color: var(--tgz-ink);
  font-family: var(--tgz-font-body);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.tgz411MenuOpen {
  overflow: hidden;
  touch-action: none;
}

[hidden] {
  display: none !important;
}

:where(main, section, article, aside, nav, header, footer, div, form, fieldset) {
  min-width: 0;
}

:where(img, picture, svg, video, canvas, iframe) {
  max-width: 100%;
}

img {
  height: auto;
}

:where(button, input, select, textarea) {
  font: inherit;
}

:where(button, input, select, textarea, summary) {
  color: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--tgz-teal);
  outline-offset: 3px;
  box-shadow: var(--tgz-focus);
}

::selection {
  background: rgba(32, 199, 183, .28);
  color: var(--tgz-ink);
}

.container {
  width: min(calc(100% - 32px), var(--tgz-max));
  max-width: var(--tgz-max);
  margin-inline: auto;
  padding-inline: 0;
}

:where(h1, h2, h3) {
  margin-block: 0;
  color: var(--tgz-ink);
  font-family: var(--tgz-font-display);
  line-height: 1.04;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 5.15rem);
  line-height: .96;
  letter-spacing: -.055em;
}

h2 {
  font-size: clamp(1.45rem, 3.5vw, 2.55rem);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

:where(p, ul, ol, dl) {
  overflow-wrap: anywhere;
}

:where(.lead, .note, .notice, .content p, .content li) {
  color: var(--tgz-muted);
}

:where(.section) {
  padding-block: clamp(22px, 4vw, 52px);
}

:where(.content, .card, .inc, .kpi, .form, .notice, .landingMiniCard, .landingStat, .v29Panel) {
  border: 1px solid var(--tgz-line);
  border-radius: var(--tgz-radius);
  background: color-mix(in srgb, var(--tgz-card) 94%, transparent);
  box-shadow: var(--tgz-shadow-sm);
}

:where(.content, .card, .inc, .kpi, .form, .landingMiniCard, .landingStat, .v29Panel) {
  padding: clamp(15px, 2.5vw, 24px);
}

:where(.notice) {
  padding: 12px 14px;
  box-shadow: none;
}

:where(.grid, .grid2, .cards, .cardsTight, .listing, .includesGrid, .related, .landingMiniGrid, .landingStatGrid, .kpiRow, .ugcGrid) {
  display: grid;
  gap: clamp(10px, 1.8vw, 16px);
}

:where(.grid, .grid2, .listing, .related) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

:where(.cards, .cardsTight, .includesGrid, .landingMiniGrid, .landingStatGrid, .kpiRow, .ugcGrid) {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

:where(.related) > a,
:where(.listing) > :where(a, article, div),
:where(.includesGrid) > *,
:where(.landingMiniCard, .landingStat, .ugcCard) {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 15px;
  border: 1px solid var(--tgz-line);
  border-radius: var(--tgz-radius-sm);
  background: var(--tgz-card);
  color: var(--tgz-ink);
  text-decoration: none;
  box-shadow: 0 7px 22px rgba(8, 31, 42, .06);
}

:where(.related) > a:hover,
:where(.ugcCard):hover {
  border-color: color-mix(in srgb, var(--tgz-teal) 54%, var(--tgz-line));
  transform: translateY(-1px);
}

:where(.related, .listing) :where(small, span),
:where(.ugcCard) :where(small, .ugcExcerpt) {
  color: var(--tgz-muted);
}

:where(.btnRow, .cta, .pills) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

:where(.btn, button.btn) {
  appearance: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  max-width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--tgz-line-strong);
  border-radius: 999px;
  background: var(--tgz-card);
  color: var(--tgz-ink);
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
}

:where(.btn.primary) {
  border-color: var(--tgz-ocean);
  background: var(--tgz-ocean);
  color: #ffffff;
}

html:not([data-theme="dark"]):not([data-theme-mode="dark"]) :where(a.btn.primary, button.btn.primary) {
  color: #ffffff !important;
}

html:not([data-theme="dark"]):not([data-theme-mode="dark"]) :where(a.btn.primary, button.btn.primary) :where(span, strong, small) {
  color: #ffffff !important;
}

html[data-theme="dark"] :where(.btn.primary),
html[data-theme-mode="dark"] :where(.btn.primary) {
  color: #041114 !important;
}

html[data-theme="dark"] :where(.btn.primary) :where(span, strong, small),
html[data-theme-mode="dark"] :where(.btn.primary) :where(span, strong, small) {
  color: #041114 !important;
}

html:not([data-theme="dark"]):not([data-theme-mode="dark"]) :where(.btn.secondary, .btn:not(.primary)) {
  color: #07161c !important;
}

html:not([data-theme="dark"]):not([data-theme-mode="dark"]) :where(.btn.secondary, .btn:not(.primary)) :where(span, strong, small) {
  color: #07161c !important;
}

html[data-theme="dark"] :where(.btn.secondary, .btn:not(.primary)),
html[data-theme-mode="dark"] :where(.btn.secondary, .btn:not(.primary)) {
  color: #f8f4ec !important;
}

:where(.btn.secondary) {
  background: var(--tgz-surface-2);
}

:where(.btn):hover {
  border-color: var(--tgz-atlantic);
  transform: translateY(-1px);
}

:where(.heroPill, .eyebrow, .kicker, .pill, .badge, .tag) {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--tgz-teal) 28%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--tgz-mint) 34%, var(--tgz-surface));
  color: color-mix(in srgb, var(--tgz-atlantic) 84%, var(--tgz-ink));
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .075em;
  line-height: 1;
  text-transform: uppercase;
}

/* Shared photographic hero: image, overlay and copy remain one component. */
:where(.hero) {
  padding-block: clamp(12px, 2.4vw, 26px);
}

:where(.heroWrap, .heroWrapV18) {
  position: relative;
  isolation: isolate;
  min-height: clamp(390px, 55vw, 610px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: clamp(22px, 4vw, 36px);
  background: var(--tgz-ocean);
  box-shadow: 0 28px 80px rgba(3, 20, 29, .22);
}

:where(.heroWrap, .heroWrapV18) > picture {
  position: absolute;
  inset: 0;
  z-index: -3;
}

:where(.heroImg) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

:where(.heroOverlay, .heroOverlayV18) {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(2, 18, 26, .94) 4%, rgba(3, 28, 37, .73) 55%, rgba(3, 28, 37, .22) 100%),
    linear-gradient(0deg, rgba(2, 18, 26, .58), transparent 55%);
}

:where(.heroContent) {
  width: min(760px, 100%);
  display: grid;
  gap: 14px;
  padding: clamp(24px, 6vw, 72px);
  color: #ffffff;
}

:where(.heroContent) :where(h1, h2, h3) {
  color: #ffffff;
}

:where(.heroContent) p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, .80);
  font-size: clamp(.98rem, 2vw, 1.14rem);
}

:where(.heroContent) :where(.heroPill) {
  border-color: rgba(154, 240, 216, .30);
  background: rgba(154, 240, 216, .12);
  color: var(--tgz-mint);
}

/* Sharing is a hero utility, never a copy-row or an accidental fourth CTA. */
.heroContent .tgzShareMount {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-end: 16px;
  z-index: 4;
  order: 99;
  margin: 0;
}

.heroContent .tgzShareButton {
  min-height: 36px;
  padding: 7px 11px;
  border-color: rgba(255, 255, 255, .56);
  background: rgba(255, 250, 241, .94);
  color: #07161c !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
}

.heroContent .tgzShareButton :where(.tgzShareButton__label, svg, path),
.heroContent .tgzShareButton:hover,
.heroContent .tgzShareButton:focus-visible {
  color: #07161c !important;
}

html[lang="ar"] :where(h1, h2, h3) {
  line-height: 1.16;
  letter-spacing: 0;
}

html[lang="ar"] .heroContent h1 {
  max-width: 19ch;
  font-size: clamp(1.9rem, 5.2vw, 4.4rem);
  line-height: 1.16;
}

/* Forms and tables use one responsive contract. */
:where(label) {
  color: var(--tgz-ink);
  font-weight: 750;
}

:where(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--tgz-line-strong);
  border-radius: var(--tgz-radius-sm);
  background: var(--tgz-card);
  color: var(--tgz-ink);
  outline: none;
}

:where(textarea) {
  min-height: 120px;
  resize: vertical;
}

:where(input, select, textarea)::placeholder {
  color: color-mix(in srgb, var(--tgz-muted) 72%, transparent);
}

:where(.formRow) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 10px;
}

:where(.tableWrap) {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--tgz-line);
  border-radius: var(--tgz-radius-sm);
  background: var(--tgz-card);
  -webkit-overflow-scrolling: touch;
}

:where(table) {
  width: 100%;
  border-collapse: collapse;
  color: var(--tgz-ink);
}

:where(th, td) {
  padding: 11px 12px;
  border-bottom: 1px solid var(--tgz-line);
  text-align: start;
  vertical-align: top;
}

:where(th) {
  background: var(--tgz-surface-2);
  font-size: .73rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

:where(tr:last-child td) {
  border-bottom: 0;
}

:where(.faq) {
  display: grid;
  gap: 9px;
}

:where(.faq details, details.card) {
  overflow: clip;
  border: 1px solid var(--tgz-line);
  border-radius: var(--tgz-radius-sm);
  background: var(--tgz-card);
}

:where(.faq summary, details.card > summary) {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--tgz-ink);
  font-weight: 850;
  cursor: pointer;
}

:where(.faq details p, details.card > :not(summary)) {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--tgz-muted);
}

/* Small editorial routes share these primitives without taking ownership of app internals. */
:where(.split) {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .92fr);
  gap: clamp(12px, 2vw, 20px);
  align-items: stretch;
}

:where(.media) {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--tgz-line);
  border-radius: var(--tgz-radius-lg);
  background: var(--tgz-surface-2);
  box-shadow: var(--tgz-shadow-sm);
}

:where(.media picture, .media img) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

:where(.visualHeroRail) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 9px;
  margin-top: 10px;
}

:where(.v29Metric) {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 13px;
  border: 1px solid var(--tgz-line);
  border-radius: 16px;
  background: var(--tgz-card);
  box-shadow: var(--tgz-shadow-sm);
}

:where(.v29Metric b, .v29Metric small) {
  color: var(--tgz-muted);
}

:where(.v29Metric strong) {
  color: var(--tgz-ink);
  font-family: var(--tgz-font-display);
  font-size: 1.18rem;
}

:where(.legalContentShell) {
  max-width: 860px;
  margin-inline: auto;
}

:where(.legalContentShell h1) {
  font-size: clamp(2rem, 5vw, 4rem);
}

:where(.legalContentShell a) {
  color: var(--tgz-atlantic);
}

/* Header */
.tgz411Header {
  position: sticky;
  top: 0;
  z-index: 5200;
  width: 100%;
  border-bottom: 1px solid rgba(154, 240, 216, .14);
  background: rgba(3, 12, 16, .96);
  color: #fffaf1;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.tgz411HeaderInner {
  width: min(calc(100% - 20px), 1560px);
  margin-inline: auto;
}

.tgz411HeaderNav {
  min-height: var(--tgz-header-height);
  display: grid;
  grid-template-columns: 50px clamp(164px, 16vw, 226px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(6px, .8vw, 12px);
}

.tgz411MenuButton,
.tgz411PickerButton,
.tgz411ThemeButton,
.tgz411Close {
  appearance: none;
  border: 1px solid rgba(154, 240, 216, .20);
  background: rgba(255, 255, 255, .07);
  color: #fffaf1;
  cursor: pointer;
  touch-action: manipulation;
}

.tgz411MenuButton {
  width: 50px;
  height: 50px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 0;
  border-radius: 15px;
}

.tgz411MenuButton span {
  width: 21px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.tgz411MenuButton[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.tgz411MenuButton[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.tgz411MenuButton[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.tgz411LogoPlate {
  min-width: 0;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 7px 12px;
  overflow: hidden;
  border: 1px solid rgba(154, 240, 216, .14);
  border-radius: 15px;
  background: #020506;
  text-decoration: none;
  justify-content: center;
}

.tgz411Logo,
.tgz411Logo picture {
  width: 100%;
  height: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tgz411Logo img {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 34px !important;
  max-height: 34px !important;
  display: block;
  object-fit: contain !important;
  object-position: center center !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  clip-path: none !important;
  transform: none !important;
}

.tgz411Primary {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  overflow: hidden;
}

.tgz411Primary a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px clamp(8px, .9vw, 13px);
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 250, 241, .78);
  font-size: clamp(.72rem, .82vw, .84rem);
  font-weight: 820;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.tgz411Primary a:hover,
.tgz411Primary a.isActive,
.tgz411Primary a[aria-current="page"] {
  border-color: rgba(154, 240, 216, .18);
  background: rgba(154, 240, 216, .09);
  color: #ffffff;
}

.tgz411HeaderTools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.tgz411Picker {
  position: relative;
}

.tgz411PickerButton,
.tgz411ThemeButton {
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 13px;
  font-size: .72rem;
  font-weight: 900;
}

.tgz411ThemeButton [data-tgz-theme-label] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.tgzThemeIcon {
  font-size: 1rem;
  line-height: 1;
}

.tgz411PickerMenu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  z-index: 5300;
  width: min(270px, calc(100vw - 24px));
  max-height: min(64vh, 520px);
  overflow: auto;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 8px;
  border: 1px solid var(--tgz-line);
  border-radius: 17px;
  background: var(--tgz-surface);
  color: var(--tgz-ink);
  box-shadow: var(--tgz-shadow);
}

.tgz411PickerMenu--currency {
  width: 132px;
}

.tgz411PickerOption {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--tgz-line);
  border-radius: 11px;
  background: var(--tgz-card);
  color: var(--tgz-ink);
  text-decoration: none;
  cursor: pointer;
}

.tgz411PickerOption small {
  color: var(--tgz-muted);
}

.tgz411PickerOption.is-current,
.tgz411PickerOption[aria-pressed="true"] {
  border-color: var(--tgz-atlantic);
  background: var(--tgz-surface-2);
}

/* Command drawer */
#navDrawer.tgz411Menu {
  position: fixed;
  inset: 0;
  z-index: 8000;
  color: var(--tgz-ink);
}

#navDrawer.tgz411Menu .tgz411Backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity .18s ease;
}

#navDrawer.tgz411Menu .tgz411Sheet {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: min(580px, calc(100vw - 18px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-inline-end: 1px solid var(--tgz-line);
  background:
    radial-gradient(circle at 92% 4%, rgba(32, 199, 183, .11), transparent 23rem),
    var(--tgz-page);
  box-shadow: 28px 0 90px rgba(0, 0, 0, .28);
  transform: translateX(-18px);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}

[dir="rtl"] #navDrawer.tgz411Menu .tgz411Sheet {
  transform: translateX(18px);
}

#navDrawer.tgz411Menu.is-open .tgz411Backdrop,
#navDrawer.tgz411Menu.is-open .tgz411Sheet {
  opacity: 1;
}

#navDrawer.tgz411Menu.is-open .tgz411Sheet {
  transform: translateX(0);
}

.tgz411Head {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--tgz-line);
  background: rgba(3, 12, 16, .98);
}

.tgz411Brand {
  width: min(230px, 100%);
  height: 46px;
  display: flex;
  align-items: center;
  padding: 7px 11px;
  overflow: hidden;
  border: 1px solid rgba(154, 240, 216, .14);
  border-radius: 14px;
  background: #020506;
}

.tgz411Brand img {
  width: 100%;
  height: 30px;
  object-fit: contain;
}

.tgz411Close {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  font-size: 1.6rem;
  line-height: 1;
}

.tgz411Scroll {
  overflow: auto;
  overscroll-behavior: contain;
  padding: 12px 12px max(22px, env(safe-area-inset-bottom));
}

.tgz411Quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.tgz411Quick a {
  min-height: 76px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 6px;
  padding: 11px;
  border: 1px solid var(--tgz-line);
  border-radius: 15px;
  background: var(--tgz-card);
  color: var(--tgz-ink);
  font-size: .76rem;
  font-weight: 820;
  text-decoration: none;
}

.tgz411Quick a.is-active,
.tgz411Quick a[aria-current="page"] {
  border-color: var(--tgz-atlantic);
  background: var(--tgz-surface-2);
}

.tgz411Quick svg,
.menuIntentIcon,
.menuScopeIcon,
.menuGroupIcon {
  width: 18px;
  height: 18px;
}

.tgz411Search {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 7px 8px 7px 12px;
  border: 1px solid var(--tgz-line-strong);
  border-radius: 15px;
  background: var(--tgz-card);
}

.tgz411Search input {
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tgz411SearchClear {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: var(--tgz-surface-2);
  color: var(--tgz-ink);
  cursor: pointer;
}

.tgz411Results {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid var(--tgz-line);
  border-radius: 15px;
  background: var(--tgz-surface);
}

.tgz411Result {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid var(--tgz-line);
  border-radius: 11px;
  background: var(--tgz-card);
  color: var(--tgz-ink);
  text-decoration: none;
}

.tgz411Result small,
.tgz411NoResults {
  color: var(--tgz-muted);
  font-size: .72rem;
}

.tgz411Sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.tgz411Section {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--tgz-line);
  border-radius: 15px;
  background: var(--tgz-card);
}

.tgz411SectionToggle,
.tgz422SettingToggle {
  appearance: none;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--tgz-ink);
  font-weight: 850;
  text-align: start;
  cursor: pointer;
}

.tgz411SectionLabel {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tgz411ToggleMark {
  color: var(--tgz-atlantic);
  font-size: 1.15rem;
}

.tgz411Section.is-open .tgz411SectionToggle {
  background: var(--tgz-surface-2);
}

.tgz411LinkGrid {
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 0 7px 7px;
}

.tgz411Route {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--tgz-line);
  border-radius: 10px;
  background: var(--tgz-surface);
  color: var(--tgz-ink);
  font-size: .78rem;
  font-weight: 750;
  text-decoration: none;
}

.tgz411Route.is-active,
.tgz411Route[aria-current="page"] {
  border-color: var(--tgz-atlantic);
  background: color-mix(in srgb, var(--tgz-surface-2) 80%, var(--tgz-mint) 20%);
}

.tgz411Settings {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.tgz411Setting {
  overflow: hidden;
  border: 1px solid var(--tgz-line);
  border-radius: 15px;
  background: var(--tgz-card);
}

.tgz422SettingToggle strong {
  color: var(--tgz-atlantic);
  font-family: var(--tgz-font-mono);
  font-size: .75rem;
}

.tgz411SettingGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 0 8px 8px;
}

.tgz411SetOption {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--tgz-line);
  border-radius: 11px;
  background: var(--tgz-surface);
  color: var(--tgz-ink);
  text-decoration: none;
  cursor: pointer;
}

.tgz411SetOption small {
  color: var(--tgz-muted);
}

.tgz411SetOption.is-current,
.tgz411SetOption[aria-pressed="true"] {
  border-color: var(--tgz-atlantic);
  background: var(--tgz-surface-2);
}

.tgz411Utility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tgz411Theme,
.tgz411Whats {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--tgz-line);
  border-radius: 13px;
  background: var(--tgz-card);
  color: var(--tgz-ink);
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
}

/* Footer and mobile quick navigation */

.tgz398eQuickNav {
  display: none;
}

.tgzBackTop {
  position: fixed;
  inset-inline-end: 14px;
  bottom: 18px;
  z-index: 5100;
  width: 44px;
  height: 44px;
  border: 1px solid var(--tgz-line-strong);
  border-radius: 14px;
  background: var(--tgz-ocean);
  color: var(--tgz-ui-primary-text);
  box-shadow: var(--tgz-shadow-sm);
  cursor: pointer;
}

/* Cookie and privacy UI */
.cookieBanner {
  position: fixed;
  inset-inline: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 9000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookieBanner.is-modal-open {
  display: none;
}

.cookieBannerInner {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(154, 240, 216, .22);
  border-radius: 21px;
  background: rgba(2, 9, 12, .97);
  color: #fffaf1;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .38);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.cookieBannerText strong {
  display: block;
  color: #ffffff;
  font-family: var(--tgz-font-display);
  font-size: 1.05rem;
}

.cookieBannerText p {
  margin: 4px 0 0;
  color: rgba(255, 250, 241, .70);
  font-size: .78rem;
}

.cookieBannerActions,
.cookieActionRow,
.cookieInlineActions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cookieBannerActions .btn,
.cookieActionRow .btn,
.cookieInlineActions .btn,
.cookieInlineHead .btn {
  min-height: 40px;
  padding: 8px 12px;
  border-color: rgba(154, 240, 216, .20);
  background: #0b2028;
  color: #ffffff;
  font-size: .76rem;
}

.cookieBannerActions .btn.primary,
.cookieActionRow .btn.primary,
.cookieInlineActions .btn.primary {
  background: var(--tgz-mint);
  color: #041114;
}

.cookieModal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: none;
}

.cookieModal.is-open {
  display: block;
}

.cookieModalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(7px);
}

.cookieModalPanel {
  position: absolute;
  left: 50%;
  bottom: max(10px, env(safe-area-inset-bottom));
  width: min(760px, calc(100vw - 20px));
  max-height: min(84dvh, 760px);
  display: grid;
  gap: 12px;
  overflow: auto;
  padding: clamp(14px, 3vw, 22px);
  border: 1px solid var(--tgz-line);
  border-radius: 25px;
  background: var(--tgz-surface);
  color: var(--tgz-ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .38);
  transform: translateX(-50%);
}

.cookieModalHead,
.cookieInlineHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cookieModalHead :where(h2, p),
.cookieInlineHead :where(h2, p) {
  margin: 0;
}

.cookieModalHead p,
.cookieInlineHead p {
  margin-top: 5px;
  color: var(--tgz-muted);
}

.cookieCloseBtn {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--tgz-line);
  border-radius: 12px;
  background: var(--tgz-card);
  cursor: pointer;
}

.cookieRows {
  display: grid;
  gap: 8px;
}

.cookieRow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--tgz-line);
  border-radius: 14px;
  background: var(--tgz-card);
}

.cookieRowText {
  display: grid;
  gap: 3px;
}

.cookieRowText small {
  color: var(--tgz-muted);
}

.cookieToggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookieToggle span {
  position: relative;
  width: 48px;
  height: 28px;
  display: block;
  border-radius: 999px;
  background: color-mix(in srgb, var(--tgz-muted) 35%, transparent);
  cursor: pointer;
}

.cookieToggle span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .20);
  transition: transform .16s ease;
}

.cookieToggle input:checked + span {
  background: var(--tgz-atlantic);
}

.cookieToggle input:checked + span::after {
  transform: translateX(20px);
}

.cookieCurrentChoice,
.cookieInlineCard {
  padding: 14px;
  border: 1px solid var(--tgz-line);
  border-radius: var(--tgz-radius);
  background: var(--tgz-card);
}

.cookieCurrentBadges,
.cookieInlineGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.cookieStateBadge {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--tgz-surface-2);
  color: var(--tgz-muted);
  font-size: .7rem;
  font-weight: 800;
}

.cookieStateBadge.is-on {
  color: var(--tgz-success);
}

.cookieInlineStat {
  min-width: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px;
  border: 1px solid var(--tgz-line);
  border-radius: 11px;
}

/* Lightweight share controls retained by the shared UI runtime. */
.tgzShareMount {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.tgzShareButton {
  appearance: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--tgz-line);
  border-radius: 999px;
  background: var(--tgz-card);
  color: var(--tgz-ink);
  font-weight: 820;
  cursor: pointer;
}

.tgzShareButton svg {
  width: 16px;
  height: 16px;
}

.tgzShareToast {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom) + 82px);
  z-index: 7000;
  max-width: calc(100vw - 28px);
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--tgz-ocean);
  color: var(--tgz-ui-primary-text);
  box-shadow: var(--tgz-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .18s ease, transform .18s ease;
}

.tgzShareToast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1160px) and (min-width: 981px) {
  .tgz411Primary a:nth-child(4),
  .tgz411Primary a:nth-child(5),
  .tgz411ThemeButton {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --tgz-header-height: 66px;
  }

  .tgz411HeaderInner {
    width: min(calc(100% - 12px), 1560px);
  }

  .tgz411HeaderNav {
    grid-template-columns: 46px minmax(104px, 1fr) auto;
    gap: 6px;
  }

  .tgz411MenuButton {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .tgz411LogoPlate {
    width: min(210px, 100%);
    height: 46px;
    padding: 6px 9px;
    border-radius: 13px;
  }

  .tgz411Logo img {
    height: 29px;
    object-position: center;
  }

  .tgz411Primary {
    display: none;
  }

  .tgz411HeaderTools {
    gap: 4px;
  }

  .tgz411PickerButton {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .tgz411ThemeButton {
    display: none;
  }

  .tgz398eQuickNav {
    position: fixed;
    inset-inline: 8px;
    bottom: max(7px, env(safe-area-inset-bottom));
    z-index: 5000;
    min-height: 62px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 5px;
    border: 1px solid rgba(154, 240, 216, .18);
    border-radius: 20px;
    background: rgba(3, 12, 16, .96);
    color: #fffaf1;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .32);
    backdrop-filter: blur(16px);
  }

  .tgz398eQuickNav a {
    min-width: 0;
    min-height: 50px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 3px;
    padding: 5px 2px;
    border-radius: 14px;
    color: rgba(255, 250, 241, .70);
    font-size: .63rem;
    font-weight: 760;
    line-height: 1.05;
    text-align: center;
    text-decoration: none;
  }

  .tgz398eQuickNav a.is-active,
  .tgz398eQuickNav a[aria-current="page"] {
    background: rgba(154, 240, 216, .13);
    color: #ffffff;
  }

  .tgz398eQuickNav svg {
    width: 17px;
    height: 17px;
  }

  .tgzBackTop {
    bottom: calc(82px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 22px), var(--tgz-max));
  }

  :where(.section) {
    padding-block: 20px;
  }

  :where(.grid, .grid2, .listing, .related, .split) {
    grid-template-columns: 1fr;
  }

  :where(.heroWrap, .heroWrapV18) {
    min-height: 410px;
    border-radius: 23px;
  }

  :where(.heroContent) {
    padding: 24px 18px 28px;
  }

  :where(.heroContent) h1 {
    font-size: clamp(2.05rem, 11vw, 3.35rem);
  }

  :where(.heroContent) :where(.btnRow) {
    display: grid;
    grid-template-columns: 1fr;
  }

  :where(.heroContent) :where(.btn) {
    width: 100%;
  }

  .heroContent .tgzShareMount {
    position: static;
    width: max-content;
    max-width: 100%;
    margin-top: 2px;
  }

  .heroContent .tgzShareButton {
    min-height: 34px;
    padding: 6px 10px;
    font-size: .74rem;
  }

  .tgz411Quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tgz411Sections {
    grid-template-columns: 1fr;
  }

  .cookieBanner {
    inset-inline: 8px;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .cookieBannerInner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 11px;
    border-radius: 18px;
  }

  .cookieBannerActions .btn {
    flex: 1 1 120px;
  }

  .cookieModalPanel {
    width: calc(100vw - 14px);
    bottom: max(7px, env(safe-area-inset-bottom));
    padding: 12px;
    border-radius: 20px;
  }

  .cookieModalHead,
  .cookieInlineHead {
    display: grid;
  }

  .cookieActionRow .btn,
  .cookieInlineActions .btn {
    flex: 1 1 130px;
  }
}

@media (max-width: 390px) {
  .tgz411HeaderNav {
    grid-template-columns: 44px minmax(86px, 1fr) auto;
  }

  .tgz411MenuButton {
    width: 44px;
    height: 44px;
  }

  .tgz411LogoPlate {
    padding-inline: 7px;
  }

  .tgz411Picker--currency {
    display: none;
  }

  .tgz411SettingGrid {
    grid-template-columns: 1fr;
  }
}

/* Native static-route surfaces: About, Contact and the crawlable site index. */
.tgzAbout468 {
  display: grid;
  gap: 14px;
  padding-block: clamp(16px, 3vw, 34px);
}

.tgzAbout468Hero,
.tgzAbout468Grid article {
  overflow: hidden;
  border: 1px solid var(--tgz-line);
  border-radius: var(--tgz-radius-lg);
  background:
    radial-gradient(circle at 94% 2%, rgba(32, 199, 183, .13), transparent 22rem),
    var(--tgz-card);
  box-shadow: var(--tgz-shadow-sm);
}

.tgzAbout468Hero {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 5vw, 54px);
}

.tgzAbout468Hero > span,
.tgz268Pill,
.sc-section-label {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--tgz-atlantic) 32%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--tgz-mint) 26%, transparent);
  color: var(--tgz-atlantic);
  font: 800 .69rem/1 var(--tgz-font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tgzAbout468Hero h1 {
  max-width: 16ch;
}

.tgzAbout468Hero p {
  max-width: 70ch;
  margin: 0;
  color: var(--tgz-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.tgzAbout468Grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tgzAbout468Grid article {
  min-width: 0;
  padding: clamp(16px, 3vw, 24px);
}

.tgzAbout468Grid :where(p, li) {
  color: var(--tgz-muted);
}

.tgzAbout468Grid ul {
  margin-block: 10px 0;
  padding-inline-start: 1.2rem;
}

.tgz268Page {
  display: grid;
  gap: 10px;
  padding-block: 14px calc(38px + env(safe-area-inset-bottom));
}

.tgz268Hero {
  padding-block: 0 4px;
}

.tgz268HeroCard,
.tgz268FormShell,
.tgz268Details,
.tgz268ContactGrid article,
.sc-response-cell,
.sc-side-card,
.sc-tp-grid a {
  border: 1px solid var(--tgz-line);
  border-radius: var(--tgz-radius);
  background: var(--tgz-card);
  box-shadow: var(--tgz-shadow-sm);
}

.tgz268HeroCard {
  display: grid;
  gap: 11px;
  padding: clamp(20px, 5vw, 48px);
  background:
    radial-gradient(circle at 90% 4%, rgba(32, 199, 183, .15), transparent 22rem),
    linear-gradient(145deg, var(--tgz-card), var(--tgz-surface-2));
}

.tgz268HeroCard h1 {
  max-width: 17ch;
  font-size: clamp(2.1rem, 6vw, 4.8rem);
}

.tgz268HeroCard p {
  max-width: 70ch;
  margin: 0;
  color: var(--tgz-muted);
  font-size: clamp(.98rem, 2vw, 1.16rem);
}

.tgz268ActionRow,
.tgz268FormActions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tgz268Section {
  padding-block: 4px;
}

.tgz268ContactGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.tgz268ContactGrid article,
.sc-response-cell,
.sc-side-card {
  min-width: 0;
  padding: 14px;
}

.tgz268ContactGrid article {
  display: grid;
  align-content: start;
  gap: 6px;
}

.tgz268ContactGrid article > span,
.sc-num {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--tgz-ocean);
  color: var(--tgz-ui-primary-text);
  font: 750 .7rem/1 var(--tgz-font-mono);
}

.tgz268ContactGrid :where(b, p) {
  margin: 0;
}

.tgz268ContactGrid p,
.tgz268FormShell p,
.tgz268Faq p,
.sc-side-card small,
.sc-tp-note {
  color: var(--tgz-muted);
}

.sc-response-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.sc-response-cell {
  display: grid;
  gap: 4px;
  border-inline-start: 3px solid var(--tgz-atlantic);
}

.sc-response-cell .sc-k {
  color: var(--tgz-muted);
  font: 700 .66rem/1.2 var(--tgz-font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sc-response-cell .sc-v {
  color: var(--tgz-ink);
  font-weight: 800;
}

.tgz268FormShell {
  padding: clamp(16px, 3vw, 24px);
}

.sc-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
  gap: 14px;
}

.tgz268Form,
.sc-side-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.sc-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tgz268Form label {
  display: grid;
  gap: 5px;
  color: var(--tgz-ink);
  font-weight: 780;
}

.sc-side-card .sc-li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  padding-block: 9px;
  border-bottom: 1px solid var(--tgz-line);
}

.sc-side-card .sc-li:last-child {
  border-bottom: 0;
}

.tgz268Details {
  padding: 13px;
}

.tgz268Details > summary {
  color: var(--tgz-ink);
  font-weight: 850;
  cursor: pointer;
}

.tgz268Faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 9px;
  margin-top: 12px;
}

.tgz268Faq article {
  padding: 13px;
  border: 1px solid var(--tgz-line);
  border-radius: 14px;
  background: var(--tgz-surface);
}

.sc-tp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 9px;
}

.sc-tp-grid a {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 13px;
  color: var(--tgz-ink);
  text-decoration: none;
}

.sc-tp-grid :where(.sc-tp-ar, .sc-tp-s) {
  color: var(--tgz-muted);
}

.tgz398hIndex {
  padding-bottom: clamp(38px, 6vw, 72px);
}

.tgz398hIndexHero {
  margin: 12px;
  overflow: hidden;
  border: 1px solid rgba(154, 240, 216, .16);
  border-radius: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 88% 0, rgba(154, 240, 216, .17), transparent 24rem),
    linear-gradient(145deg, #041015, #0a2731);
  color: #f8f4ec;
  box-shadow: 0 26px 74px rgba(3, 20, 29, .22);
}

.tgz398hIndexHero .container {
  display: grid;
  gap: 10px;
  padding-block: clamp(28px, 6vw, 72px);
}

.tgz398hIndexHero .container > span {
  color: #9af0d8;
  font: 800 .7rem/1 var(--tgz-font-mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.tgz398hIndexHero :where(h1, p) {
  margin: 0;
  color: inherit;
}

.tgz398hIndexHero p {
  max-width: 70ch;
  color: rgba(248, 244, 236, .72);
}

.tgz398hIndexStats {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.tgz398hIndexStats b {
  color: #9af0d8;
  font-family: var(--tgz-font-display);
  font-size: clamp(2rem, 5vw, 4rem);
}

.tgz398hIndexStats em {
  color: rgba(248, 244, 236, .68);
  font-style: normal;
}

.tgz398hIndexFamilies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 8px;
  padding-block: 16px;
}

.tgz398hIndexFamilies a,
.tgz398hIndexGrid a {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--tgz-line);
  border-radius: 14px;
  background: var(--tgz-card);
  color: var(--tgz-ink);
  text-decoration: none;
  box-shadow: var(--tgz-shadow-sm);
}

.tgz398hIndexFamilies span,
.tgz398hIndexGrid span {
  color: var(--tgz-muted);
  font-size: .72rem;
  overflow-wrap: anywhere;
}

.tgz398hIndexRoutes {
  display: grid;
  gap: 12px;
}

.tgz398hIndexGroup {
  scroll-margin-top: calc(var(--tgz-header-height) + 16px);
  padding: clamp(14px, 3vw, 22px);
  border: 1px solid var(--tgz-line);
  border-radius: var(--tgz-radius-lg);
  background: color-mix(in srgb, var(--tgz-surface) 92%, transparent);
}

.tgz398hIndexGroup h2 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.tgz398hIndexGroup h2 small {
  color: var(--tgz-muted);
  font: 700 .75rem/1 var(--tgz-font-mono);
}

.tgz398hIndexGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 8px;
}

@media (max-width: 760px) {
  .tgzAbout468Grid,
  .tgz268ContactGrid,
  .sc-response-strip,
  .sc-form-grid,
  .sc-form-row {
    grid-template-columns: 1fr;
  }

  .tgzAbout468Hero,
  .tgzAbout468Grid article,
  .tgz268HeroCard {
    border-radius: 21px;
  }

  .tgz268ActionRow,
  .tgz268FormActions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tgz268ActionRow .btn,
  .tgz268FormActions .btn {
    width: 100%;
  }

  .tgz398hIndexHero {
    margin: 7px;
  }
}

/* Homepage: preserve the editorial cockpit, remove width/clipping failures. */
body.homeCockpitPortal {
  background:
    radial-gradient(circle at 9% 10%, rgba(32, 199, 183, .10), transparent 28rem),
    radial-gradient(circle at 88% 20%, rgba(229, 138, 34, .10), transparent 30rem),
    var(--tgz-signal-sand) !important;
}

body.homeCockpitPortal :where(.hcPage, .container, .hcGridTop, .hcSplitSection, .hcPlanGrid, .hcSurfCards) {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

body.homeCockpitPortal :where(.hcGridTop, .hcSplitSection, .hcPlanGrid, .hcSurfCards) > * {
  min-width: 0;
}

body.homeCockpitPortal :where(.hcPanel, .hcPlanCard, .hcSurfCards article, .hcTestimonialCard) {
  border: 1px solid rgba(7, 22, 28, .11) !important;
  box-shadow: var(--tgz-signal-shadow) !important;
}

body.homeCockpitPortal .hcPanel {
  overflow: clip !important;
}

body.homeCockpitPortal :where(.hcPanelActions, .hcTrustActions, .hcHeroActions) > * {
  max-width: 100%;
}

body.homeCockpitPortal :where(h1, h2, h3, p, strong, span, a) {
  overflow-wrap: anywhere;
}

body.homeCockpitPortal .hcHero {
  border: 1px solid rgba(255, 255, 255, .14) !important;
  box-shadow: 0 28px 80px rgba(2, 12, 18, .24) !important;
}

body.homeCockpitPortal .hcHero :where(h1, h2, h3) {
  color: #fffaf1 !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .34);
}

body.homeCockpitPortal .hcHeroOverlay {
  background:
    linear-gradient(112deg, rgba(3, 18, 26, .94) 4%, rgba(3, 27, 36, .77) 53%, rgba(3, 27, 36, .34) 100%),
    radial-gradient(circle at 82% 9%, rgba(229, 138, 34, .30), transparent 28%) !important;
}

body.homeCockpitPortal .hcKicker,
body.homeCockpitPortal :where(.hcHeroChips a, .hcSpotChips a, .hcLevelRail span) {
  border-radius: 999px !important;
}

html[data-theme="dark"] body.homeCockpitPortal {
  background:
    radial-gradient(circle at 10% 8%, rgba(32, 199, 183, .10), transparent 30rem),
    #050b0e !important;
}

/* Booking cockpit: the controls stay available without hiding the form. */
body.buildPage .buildCleanMain {
  padding-bottom: calc(7rem + env(safe-area-inset-bottom)) !important;
}

body.buildPage .cleanStep,
body.buildPage :where(input, select, textarea, button) {
  scroll-margin-bottom: 7rem;
}

body.buildPage .helmDock {
  grid-template-columns: minmax(0, 1fr) 52px minmax(118px, 146px) !important;
  width: min(760px, calc(100vw - 24px)) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  bottom: max(10px, env(safe-area-inset-bottom)) !important;
  gap: 6px !important;
  padding: 6px !important;
  border-radius: 18px !important;
  background: rgba(255, 253, 248, .94) !important;
}

body.buildPage .helmDock__summary {
  grid-column: auto !important;
  min-width: 0 !important;
  min-height: 46px !important;
}

body.buildPage .helmDock__back,
body.buildPage .helmDock__next {
  min-height: 46px !important;
}

body.buildPage .helmHero__currency-note {
  grid-column: 1 / -1;
  display: block;
  color: var(--b-muted);
  font-size: .68rem;
  line-height: 1.35;
}

@media (max-width: 760px) {
  body.buildPage .buildCleanMain {
    padding-bottom: calc(5.8rem + env(safe-area-inset-bottom)) !important;
  }

  body.buildPage .helmDock {
    grid-template-columns: minmax(0, 1fr) minmax(96px, auto) !important;
    width: calc(100vw - 12px) !important;
    bottom: max(6px, env(safe-area-inset-bottom)) !important;
    border-radius: 15px !important;
  }

  body.buildPage .helmDock__summary {
    grid-column: auto !important;
    min-height: 44px !important;
  }

  body.buildPage .helmDock__next {
    min-height: 44px !important;
  }

  body.buildPage .helmDock__back {
    display: none !important;
  }
}

/* Branded real-404 recovery surface. */
body.tgz404Page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 14%, rgba(32, 199, 183, .17), transparent 25rem),
    radial-gradient(circle at 86% 28%, rgba(229, 138, 34, .18), transparent 28rem),
    var(--tgz-signal-sand) !important;
}

.tgz404Main {
  min-height: min(760px, calc(100vh - var(--tgz411-header-h, 72px)));
  display: grid;
  place-items: center;
  padding: clamp(36px, 8vw, 110px) 16px;
}

.tgz404Card {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(180px, .58fr) minmax(0, 1.42fr);
  overflow: hidden;
  border: 1px solid var(--tgz-signal-line);
  border-radius: 30px;
  background: var(--tgz-signal-cream);
  box-shadow: 0 30px 90px rgba(7, 22, 28, .16);
}

.tgz404Code {
  display: grid;
  place-items: center;
  min-height: 360px;
  background:
    linear-gradient(155deg, rgba(32, 199, 183, .18), transparent 48%),
    var(--tgz-signal-ocean);
  color: var(--tgz-signal-mint);
  font: 900 clamp(4.5rem, 12vw, 9rem)/1 "Inter Tight", Inter, sans-serif;
  letter-spacing: -.08em;
}

.tgz404Copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(26px, 6vw, 70px);
}

.tgz404Copy :where(h1, p) {
  margin: 0;
}

.tgz404Copy h1 {
  max-width: 13ch;
  color: var(--tgz-signal-ink);
  font: 900 clamp(2rem, 5vw, 4.5rem)/.94 "Inter Tight", Inter, sans-serif;
  letter-spacing: -.055em;
}

.tgz404Copy p {
  max-width: 54ch;
  color: #52676f;
  font: 600 1rem/1.65 Inter, sans-serif;
}

.tgz404Eyebrow {
  color: var(--tgz-signal-teal) !important;
  font: 900 .72rem/1.1 "IBM Plex Mono", monospace !important;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.tgz404Actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tgz404Actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--tgz-signal-line);
  border-radius: 999px;
  background: #fff;
  color: var(--tgz-signal-ink);
  text-decoration: none;
  font: 800 .88rem/1 Inter, sans-serif;
}

.tgz404Actions a:first-child {
  background: var(--tgz-signal-ocean);
  border-color: var(--tgz-signal-ocean);
  color: #fff;
}

.tgz404Routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--tgz-signal-line);
}

.tgz404Routes a {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid var(--tgz-signal-line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .64);
  color: var(--tgz-signal-ink);
  text-decoration: none;
}

.tgz404Routes strong {
  font: 800 .82rem/1.15 Inter, sans-serif;
}

.tgz404Routes span {
  color: #65777d;
  font: 600 .7rem/1.35 Inter, sans-serif;
}

html[data-theme="dark"] :where(.tgz404Card, .tgz404Copy) {
  background: #09151a;
}

html[data-theme="dark"] .tgz404Copy h1 {
  color: #f8f4ec;
}

html[data-theme="dark"] .tgz404Copy p {
  color: rgba(248, 244, 236, .70);
}

html[data-theme="dark"] .tgz404Actions a {
  background: #10252d;
  border-color: rgba(154, 240, 216, .18);
  color: #f8f4ec;
}

html[data-theme="dark"] .tgz404Routes a {
  background: #10252d;
  border-color: rgba(154, 240, 216, .18);
  color: #f8f4ec;
}

html[data-theme="dark"] .tgz404Routes span {
  color: rgba(248, 244, 236, .64);
}

@media (max-width: 680px) {
  .tgz404Card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .tgz404Code {
    min-height: 150px;
    font-size: clamp(4rem, 24vw, 7rem);
  }

  .tgz404Copy {
    padding: 26px 20px 30px;
  }

  .tgz404Actions {
    display: grid;
  }

  .tgz404Routes {
    grid-template-columns: 1fr;
  }
}

/* Standalone commercial routes use the same truthful light/dark shell. */
body.tpStandalonePage {
  background:
    radial-gradient(circle at 8% 5%, rgba(32, 199, 183, .10), transparent 28rem),
    var(--tgz-page);
}

.tpStandaloneMain {
  display: grid;
  gap: 12px;
  padding-block: clamp(16px, 3vw, 34px);
}

.tpStandaloneHero,
.tpStandaloneFaq,
.tpStandaloneNext {
  border: 1px solid var(--tgz-line);
  border-radius: var(--tgz-radius-lg);
  background: var(--tgz-card);
  box-shadow: var(--tgz-shadow-sm);
}

.tpStandaloneHero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: clamp(22px, 5vw, 54px);
  background:
    radial-gradient(circle at 92% 4%, rgba(32, 199, 183, .17), transparent 24rem),
    linear-gradient(145deg, var(--tgz-card), var(--tgz-surface-2));
}

.tpStandaloneHero h1 {
  max-width: 18ch;
  font-size: clamp(2.15rem, 6vw, 5rem);
}

.tpStandaloneLead {
  max-width: 72ch;
  margin: 0;
  color: var(--tgz-muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.tpStandaloneFaq,
.tpStandaloneNext {
  padding: clamp(16px, 3vw, 25px);
}

.tpStandaloneFaq > h2 {
  margin-bottom: 12px;
}

html[data-theme="dark"] .tpStandaloneHero,
html[data-theme-mode="dark"] .tpStandaloneHero {
  background:
    radial-gradient(circle at 92% 4%, rgba(154, 240, 216, .09), transparent 24rem),
    linear-gradient(145deg, #09171d, #10252d);
}

@media (max-width: 680px) {
  .tpStandaloneMain {
    width: min(calc(100% - 18px), var(--tgz-max));
  }

  .tpStandaloneHero,
  .tpStandaloneFaq,
  .tpStandaloneNext {
    border-radius: 21px;
  }

  .tpStandaloneHero .btnRow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tpStandaloneHero .btn {
    width: 100%;
  }
}

/* Commercial trust contract: first-party review and affiliate self-service stay distinct. */
.tpHybridChoice {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 12px 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--tgz-line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(32, 199, 183, .14), transparent 22rem),
    linear-gradient(145deg, var(--tgz-card), var(--tgz-surface-2));
  color: var(--tgz-ink);
  box-shadow: var(--tgz-shadow);
}

.tpHybridHead {
  display: grid;
  gap: 7px;
  max-width: 780px;
}

.tpHybridHead :where(h2, p) {
  margin: 0;
}

.tpHybridHead > span {
  width: max-content;
  padding: 6px 9px;
  border: 1px solid color-mix(in srgb, var(--tgz-atlantic) 32%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--tgz-mint) 30%, transparent);
  color: var(--tgz-atlantic);
  font: 850 .7rem/1 Inter, sans-serif;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.tpHybridHead h2 {
  max-width: 22ch;
  color: var(--tgz-ink);
  font: 900 clamp(1.5rem, 3.1vw, 2.45rem)/1 "Inter Tight", Inter, sans-serif;
  letter-spacing: -.04em;
}

.tpHybridHead p,
.tpHybridChoice > .tpDisclaimer {
  color: var(--tgz-muted);
  font: 550 .9rem/1.55 Inter, sans-serif;
}

.tpHybridGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 16px;
}

.tpHybridCard {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  padding: 15px;
  border: 1px solid var(--tgz-line);
  border-radius: 19px;
  background: color-mix(in srgb, var(--tgz-card) 88%, transparent);
}

.tpHybridCard.isLocal {
  border-color: color-mix(in srgb, var(--tgz-atlantic) 36%, var(--tgz-line));
  background: color-mix(in srgb, var(--tgz-mint) 23%, var(--tgz-card));
}

.tpHybridCard b {
  color: var(--tgz-ink);
  font: 850 1rem/1.2 Inter, sans-serif;
}

.tpHybridCard p {
  margin: 0;
  color: var(--tgz-muted);
  font: 550 .84rem/1.48 Inter, sans-serif;
}

.tpHybridCta,
.tpConsentGate button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 9px 13px;
  border: 1px solid var(--tgz-ocean);
  border-radius: 13px;
  background: var(--tgz-ocean);
  color: var(--tgz-ui-primary-text);
  cursor: pointer;
  text-decoration: none;
  font: 800 .82rem/1.2 Inter, sans-serif;
}

.tpHybridCta.isPrimary {
  border-color: var(--tgz-atlantic);
  background: var(--tgz-atlantic);
  color: #ffffff;
}

.tpHybridChoice > .tpDisclaimer {
  margin: 12px 0 0;
  padding-top: 11px;
  border-top: 1px solid var(--tgz-line);
  font-size: .76rem;
}

html[data-theme="dark"] .tpHybridChoice,
html[data-theme-mode="dark"] .tpHybridChoice {
  border-color: rgba(154, 240, 216, .18);
  background:
    radial-gradient(circle at 92% 8%, rgba(154, 240, 216, .10), transparent 22rem),
    linear-gradient(145deg, #06151c, #0a2731);
  color: #f8f4ec;
}

html[data-theme="dark"] .tpHybridHead > span,
html[data-theme-mode="dark"] .tpHybridHead > span {
  border-color: rgba(154, 240, 216, .24);
  background: rgba(154, 240, 216, .08);
  color: #bdf7e6;
}

html[data-theme="dark"] .tpHybridChoice :where(.tpHybridHead h2, .tpHybridCard b),
html[data-theme-mode="dark"] .tpHybridChoice :where(.tpHybridHead h2, .tpHybridCard b) {
  color: #ffffff;
}

html[data-theme="dark"] .tpHybridChoice :where(.tpHybridHead p, .tpHybridCard p, .tpDisclaimer),
html[data-theme-mode="dark"] .tpHybridChoice :where(.tpHybridHead p, .tpHybridCard p, .tpDisclaimer) {
  color: rgba(248, 244, 236, .72);
}

html[data-theme="dark"] .tpHybridCard,
html[data-theme-mode="dark"] .tpHybridCard {
  border-color: rgba(248, 244, 236, .14);
  background: rgba(255, 255, 255, .06);
}

html[data-theme="dark"] .tpHybridCard.isLocal,
html[data-theme-mode="dark"] .tpHybridCard.isLocal {
  border-color: rgba(154, 240, 216, .28);
  background: rgba(154, 240, 216, .09);
}

html[data-theme="dark"] .tpHybridCta,
html[data-theme="dark"] .tpConsentGate button,
html[data-theme-mode="dark"] .tpHybridCta,
html[data-theme-mode="dark"] .tpConsentGate button {
  border-color: rgba(154, 240, 216, .28);
  background: #12313b;
  color: #ffffff;
}

html[data-theme="dark"] .tpHybridCta.isPrimary,
html[data-theme-mode="dark"] .tpHybridCta.isPrimary {
  border-color: #9af0d8;
  background: #9af0d8;
  color: #041114;
}

.tpPartnerStack {
  scroll-margin-top: calc(var(--tgz411-header-h, 72px) + 16px);
}

.tpConsentGate {
  display: grid;
  gap: 7px;
  min-height: 180px;
  align-content: center;
  justify-items: start;
  padding: clamp(16px, 4vw, 28px);
  border: 1px dashed rgba(15, 118, 110, .30);
  border-radius: 16px;
  background:
    radial-gradient(circle at 94% 4%, rgba(32, 199, 183, .10), transparent 14rem),
    var(--tgz-signal-cream);
}

.tpConsentGate :where(b, p) {
  margin: 0;
}

.tpConsentGate b {
  color: var(--tgz-signal-ink);
  font: 850 1rem/1.2 Inter, sans-serif;
}

.tpConsentGate p {
  max-width: 64ch;
  color: #52676f;
  font: 550 .86rem/1.5 Inter, sans-serif;
}

.tpConsentGate button {
  border-color: var(--tgz-signal-ocean);
  background: var(--tgz-signal-ocean);
}

.flightFareCalendar .flightTpDisclosure {
  margin: 0;
  padding: 0 12px 12px;
  color: #52676f;
  font: 550 .74rem/1.5 Inter, sans-serif;
}

html[data-theme="dark"] .tpConsentGate {
  border-color: rgba(154, 240, 216, .20);
  background:
    radial-gradient(circle at 94% 4%, rgba(32, 199, 183, .09), transparent 14rem),
    #0b1a20;
}

html[data-theme="dark"] .tpConsentGate b {
  color: #f8f4ec;
}

html[data-theme="dark"] :where(.tpConsentGate p, .flightFareCalendar .flightTpDisclosure) {
  color: rgba(248, 244, 236, .70);
}

.tpPartnerCatalog {
  display: grid;
  gap: 16px;
  margin-block: clamp(24px, 5vw, 54px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(15, 118, 110, .22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 96% 0, rgba(32, 199, 183, .12), transparent 22rem),
    var(--tgz-signal-cream);
  box-shadow: var(--tgz-signal-shadow);
}

.tpPartnerCatalogHead {
  display: grid;
  gap: 7px;
  max-width: 76ch;
}

.tpPartnerCatalogHead :where(h2, p) {
  margin: 0;
}

.tpPartnerCatalogHead > span,
.tpPartnerCatalogCard > span {
  color: var(--tgz-signal-atlantic);
  font: 800 .72rem/1.2 Inter, sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.tpPartnerCatalogHead h2 {
  color: var(--tgz-signal-ink);
  font: 900 clamp(1.35rem, 3vw, 2.15rem)/1.08 Inter, sans-serif;
  letter-spacing: -.035em;
}

.tpPartnerCatalogHead p,
.tpPartnerCatalogDisclosure {
  color: #52676f;
  font: 550 .9rem/1.55 Inter, sans-serif;
}

.tpPartnerCatalogGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 12px;
}

.tpPartnerCatalogCard {
  display: flex;
  min-height: 224px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 17px;
  border: 1px solid rgba(7, 22, 28, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
}

.tpPartnerCatalogCard.isLocal {
  border-color: rgba(15, 118, 110, .34);
  background:
    radial-gradient(circle at 100% 0, rgba(154, 240, 216, .28), transparent 12rem),
    #eafaf5;
}

.tpPartnerCatalogCard.isPending {
  border-style: dashed;
}

.tpPartnerCatalogCard h3,
.tpPartnerCatalogCard p {
  margin: 0;
}

.tpPartnerCatalogCard h3 {
  color: var(--tgz-signal-ink);
  font: 850 1rem/1.25 Inter, sans-serif;
}

.tpPartnerCatalogCard p {
  color: #52676f;
  font: 550 .82rem/1.52 Inter, sans-serif;
}

.tpPartnerCatalogCta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 14px;
  border: 1px solid var(--tgz-signal-ocean);
  border-radius: 12px;
  background: var(--tgz-signal-ocean);
  color: var(--tgz-ui-primary-text) !important;
  font: 800 .78rem/1.1 Inter, sans-serif;
  text-decoration: none;
}

.tpPartnerCatalogCta.isPrimary {
  border-color: var(--tgz-signal-atlantic);
  background: var(--tgz-signal-atlantic);
}

.tpPartnerCatalogDisclosure {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(7, 22, 28, .10);
  font-size: .76rem;
}

html[data-theme="dark"] .tpPartnerCatalog {
  border-color: rgba(154, 240, 216, .17);
  background:
    radial-gradient(circle at 96% 0, rgba(32, 199, 183, .10), transparent 22rem),
    #0b1a20;
}

html[data-theme="dark"] .tpPartnerCatalogCard,
html[data-theme="dark"] .tpPartnerCatalogCard.isLocal {
  border-color: rgba(154, 240, 216, .15);
  background: #10252d;
}

html[data-theme="dark"] .tpPartnerCatalog :where(h2, h3) {
  color: #f8f4ec;
}

html[data-theme="dark"] .tpPartnerCatalog :where(.tpPartnerCatalogHead p, .tpPartnerCatalogCard p, .tpPartnerCatalogDisclosure) {
  color: rgba(248, 244, 236, .70);
}

@media (max-width: 680px) {
  .tpHybridChoice {
    padding: 16px;
    border-radius: 21px;
  }

  .tpHybridGrid {
    grid-template-columns: 1fr;
  }

  .tpHybridCta,
  .tpConsentGate button {
    width: 100%;
  }

  .tpPartnerCatalog {
    padding: 16px;
    border-radius: 21px;
  }

  .tpPartnerCatalogCard {
    min-height: 0;
  }

  .tpPartnerCatalogCta {
    width: 100%;
  }
}

/* Legacy live-ocean link inheritance is more specific than its primary class. */
html:not([data-theme="dark"]):not([data-theme-mode="dark"]) .liveOceanPage .oceanLockBtn--primary {
  color: #ffffff !important;
}

html[data-theme="dark"] .liveOceanPage .oceanLockBtn--primary,
html[data-theme-mode="dark"] .liveOceanPage .oceanLockBtn--primary {
  color: #031719 !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
