:root {
  --gt-background: #08090a;
  --gt-background-secondary: #101214;
  --gt-card: #171a1d;
  --gt-white: #f5f7fa;
  --gt-gray: #a7afb7;
  --gt-green: #35d07f;
  --gt-green-light: #63ffb1;
  --gt-gold: #d8b24c;
  --gt-border: rgba(255, 255, 255, 0.10);
  --gt-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(ellipse at 70% 12%, rgba(53, 208, 127, 0.16), transparent 34rem),
    linear-gradient(180deg, #08090a 0%, #101214 52%, #08090a 100%);
  color: var(--gt-white);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 75%);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-underline-offset: 0.18em;
}

.gt-green,
mark.gt-green {
  color: var(--gt-green);
  background: transparent;
}

.gt-muted {
  color: var(--gt-gray);
}

.gt-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  border-bottom: 1px solid var(--gt-border);
  background: rgba(8, 9, 10, 0.86);
  backdrop-filter: blur(18px);
}

.gt-header-inner {
  min-height: 86px;
  gap: 1rem;
  padding-block: 0.85rem;
}

.gt-brand {
  gap: 0.2rem;
  min-width: max-content;
}

.gt-brand-title {
  margin: 0;
  color: var(--gt-white);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.gt-brand-subtitle {
  margin: 0;
  color: var(--gt-gray);
  font-size: 0.68rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.gt-nav a {
  color: var(--gt-white);
  font-size: 0.92rem;
  text-decoration: none;
}

.gt-nav a:hover,
.gt-nav .current-menu-item > a {
  color: var(--gt-green-light);
}

.wp-block-button__link,
.gt-form button {
  min-height: 46px;
  border: 1px solid rgba(99, 255, 177, 0.42);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(53, 208, 127, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wp-block-button__link:hover,
.gt-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(53, 208, 127, 0.24);
}

.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--gt-white);
  border-color: var(--gt-border);
  box-shadow: none;
}

.gt-hero,
.gt-section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  padding-inline: 32px;
}

.gt-hero {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.gt-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  gap: clamp(2rem, 5vw, 5rem);
}

.gt-hero-copy {
  max-width: 720px;
}

.gt-hero-visual {
  min-width: 0;
}

.gt-eyebrow {
  margin-bottom: 0.85rem;
  color: var(--gt-green-light);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gt-hero h1 {
  max-width: 720px;
  margin-top: 0;
  font-size: clamp(3.4rem, 5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.gt-hero-subtitle {
  color: var(--gt-gray);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
}

.gt-lead {
  max-width: 760px;
  color: var(--gt-gray);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.gt-media-card,
.gt-card,
.gt-product {
  position: relative;
  border: 1px solid var(--gt-border);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(23, 26, 29, .94), rgba(16, 18, 20, .82));
  box-shadow: var(--gt-shadow);
}

.gt-media-card {
  overflow: hidden;
  padding: 0.9rem;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35), 0 0 42px rgba(53, 208, 127, 0.15);
}

.gt-photo-placeholder img {
  display: block;
  width: 100%;
  max-height: 680px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--gt-border);
  border-radius: 20px;
  background: var(--gt-background-secondary);
}

.gt-video-placeholder,
.gt-placeholder {
  border: 1px dashed rgba(99, 255, 177, 0.38);
  border-radius: 8px;
  padding: 1rem;
  color: var(--gt-gray);
  background: rgba(53, 208, 127, 0.05);
}

.gt-video-placeholder span {
  color: var(--gt-green-light);
}

.gt-metrics {
  margin-top: 2rem;
  gap: 0.9rem;
}

.gt-metrics .wp-block-column {
  padding: 1rem;
  border-top: 1px solid var(--gt-border);
  color: var(--gt-gray);
}

.gt-metrics strong,
.gt-price {
  color: var(--gt-green-light);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 1.55rem;
}

.gt-card-grid,
.gt-product-grid {
  gap: 1rem;
}

.gt-card,
.gt-product {
  padding: clamp(1.2rem, 2vw, 1.7rem);
}

.gt-card h3,
.gt-product h3 {
  margin-top: 0.2rem;
}

.gt-product {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.gt-product ul,
.gt-lessons {
  padding-left: 1.15rem;
  color: var(--gt-gray);
}

.gt-product-featured {
  border-color: rgba(99, 255, 177, 0.62);
  box-shadow: 0 0 0 1px rgba(53, 208, 127, 0.18), 0 30px 90px rgba(53, 208, 127, 0.16);
}

.gt-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: rgba(216, 178, 76, 0.12);
  color: var(--gt-gold);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
}

.gt-flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
}

.gt-flow > div {
  min-width: 130px;
  border: 1px solid var(--gt-border);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(23, 26, 29, 0.82);
}

.gt-flow strong {
  color: var(--gt-green);
  font-family: "JetBrains Mono", Consolas, monospace;
}

.gt-signature {
  color: var(--gt-green-light);
  font-style: italic;
}

.gt-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gt-newsletter,
.gt-final-cta {
  border-block: 1px solid var(--gt-border);
  text-align: center;
}

.gt-form {
  display: flex;
  max-width: 620px;
  margin: 2rem auto 0;
  gap: 0.75rem;
}

.gt-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.gt-form input {
  flex: 1;
  min-height: 50px;
  border: 1px solid var(--gt-border);
  border-radius: 8px;
  padding: 0 1rem;
  background: #0b0d0f;
  color: var(--gt-white);
}

.gt-form button {
  cursor: pointer;
  padding-inline: 1.3rem;
  background: var(--gt-green);
  color: var(--gt-background);
  font-weight: 800;
}

.gt-faq {
  display: grid;
  gap: 0.65rem;
}

.gt-faq button {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--gt-border);
  border-radius: 8px;
  padding: 1rem;
  background: var(--gt-card);
  color: var(--gt-white);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.gt-faq button::after {
  content: "+";
  float: right;
  color: var(--gt-green);
}

.gt-faq button[aria-expanded="true"]::after {
  content: "-";
}

.gt-faq div {
  border: 1px solid var(--gt-border);
  border-radius: 8px;
  padding: 1rem;
  color: var(--gt-gray);
}

.gt-footer {
  border-top: 1px solid var(--gt-border);
  padding-block: 3rem 1.5rem;
  background: #08090a;
}

.gt-clean-list {
  padding-left: 0;
  list-style: none;
}

.gt-clean-list li + li {
  margin-top: 0.5rem;
}

.gt-copyright {
  margin-top: 2rem;
  color: var(--gt-gray);
  font-size: 0.9rem;
}

.gt-center {
  text-align: center;
}

.gt-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.gt-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .gt-header-cta {
    display: none;
  }

  .gt-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gt-flow {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
  }
}

@media (max-width: 900px) {
  .gt-hero,
  .gt-section {
    padding-inline: 20px;
  }

  .gt-hero {
    min-height: auto;
  }

  .gt-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gt-hero-copy {
    max-width: 100%;
  }

  .gt-hero h1 {
    font-size: clamp(2.7rem, 11vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .gt-photo-placeholder img {
    max-height: 560px;
  }
}

@media (max-width: 782px) {
  .gt-hero h1 {
    max-width: 100%;
  }

  .gt-card-grid,
  .gt-product-grid,
  .gt-post-grid {
    grid-template-columns: 1fr;
  }

  .gt-form {
    flex-direction: column;
  }

  .gt-flow {
    grid-template-columns: 1fr;
    overflow: visible;
  }
}

@media (max-width: 480px) {
  .gt-section,
  .gt-hero {
    padding-block: 3.5rem;
    padding-inline: 20px;
  }

  .wp-block-buttons {
    align-items: stretch;
  }

  .wp-block-button,
  .wp-block-button__link {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .gt-reveal {
    opacity: 1;
    transform: none;
  }
}
