/*
Theme Name: Tantreak Brand4ward
Theme URI: https://tantreakdesign.com
Author: Tantreak Design
Author URI: https://tantreakdesign.com
Description: Animated brand-led digital marketing theme for Tantreak Design and Brand4ward. Creates all core website pages on activation and supports Gutenberg plus Elementor.
Version: 2.1.0
Requires at least: 6.1
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tantreak-brand4ward
Tags: custom-colors, custom-menu, featured-images, block-patterns, full-width-template, editor-style
*/

:root {
  --tt-bg: #050811;
  --tt-bg-2: #091221;
  --tt-panel: rgba(255, 255, 255, 0.07);
  --tt-panel-strong: rgba(255, 255, 255, 0.11);
  --tt-line: rgba(148, 163, 184, 0.22);
  --tt-line-strong: rgba(148, 163, 184, 0.38);
  --tt-text: #f8fafc;
  --tt-muted: #b7c2d6;
  --tt-soft: #7f8ea7;
  --tt-blue: #2f7df4;
  --tt-green: #19c99a;
  --tt-cyan: #6ee7f9;
  --tt-gold: #fbbf24;
  --tt-dark-text: #0f172a;
  --tt-dark-muted: #526077;
  --tt-radius: 10px;
  --tt-container: 1180px;
  --tt-font: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  --tt-display: "Plus Jakarta Sans", "Manrope", "Inter", Arial, sans-serif;
  --tt-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(47, 125, 244, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(47, 125, 244, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #081327 0%, #050811 42%, #071813 100%);
  background-size: 84px 84px, 84px 84px, auto;
  color: var(--tt-text);
  font-family: var(--tt-font);
  line-height: 1.6;
  overflow-x: hidden;
}

body.admin-bar .tt-site-header {
  top: 32px;
}

a {
  color: inherit;
}

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

.tt-site {
  min-height: 100vh;
  overflow-x: hidden;
}

.tt-container {
  width: min(var(--tt-container), calc(100% - 32px));
  margin: 0 auto;
}

.tt-site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(5, 8, 17, 0.82);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tt-site-header.is-scrolled {
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(3, 6, 13, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.tt-nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 20px;
}

.tt-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.tt-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(110, 231, 249, 0.26);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(47, 125, 244, 0.38), rgba(25, 201, 154, 0.2)),
    rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(47, 125, 244, 0.18);
}

.tt-brand-text strong,
.tt-brand-text span {
  display: block;
}

.tt-brand-text strong {
  font-family: var(--tt-display);
  line-height: 1;
  font-size: 1rem;
}

.tt-brand-text span {
  color: var(--tt-muted);
  font-size: 0.78rem;
}

.tt-menu-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.tt-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tt-menu a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: 10px;
  color: #d8e1ef;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tt-menu a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tt-blue), var(--tt-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.tt-menu a:hover,
.tt-menu .current-menu-item > a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.tt-menu a:hover::after,
.tt-menu .current-menu-item > a::after {
  transform: scaleX(1);
}

.tt-header-actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.tt-header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--tt-blue), var(--tt-green));
  color: #ffffff;
  padding: 0 18px;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(47, 125, 244, 0.28);
}

.tt-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--tt-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font-weight: 900;
  padding: 10px;
}

.tt-mobile-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.tt-mobile-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.tt-mobile-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.tt-mobile-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

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

.tt-main {
  min-height: 60vh;
}

.tt-section {
  padding: clamp(58px, 8vw, 108px) 0;
}

.tt-section-head {
  max-width: 860px;
  margin-bottom: 32px;
}

.tt-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(82px, 11vw, 136px) 0 clamp(70px, 8vw, 96px);
  overflow: hidden;
}

.tt-animated-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(5, 8, 17, 0.96) 0%, rgba(5, 8, 17, 0.86) 44%, rgba(6, 28, 25, 0.72) 100%),
    linear-gradient(145deg, rgba(47, 125, 244, 0.24), transparent 38%),
    linear-gradient(25deg, transparent 50%, rgba(25, 201, 154, 0.18));
  pointer-events: none;
}

.tt-scene-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.tt-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-left: max(0px, calc((100vw - var(--tt-container)) / 2));
}

.tt-floating-board {
  position: absolute;
  z-index: 1;
  right: clamp(24px, calc((100vw - 1500px) / 2 + 54px), 300px);
  top: 16%;
  width: min(40vw, 700px);
  min-height: 500px;
  transform: perspective(1300px) rotateY(calc(-12deg + var(--tt-tilt-y, 0deg))) rotateX(calc(6deg + var(--tt-tilt-x, 0deg))) rotateZ(-2deg);
  transform-style: preserve-3d;
  animation: tt-float 6s ease-in-out infinite;
  will-change: translate, transform;
  overflow: visible;
}

.tt-board-stage {
  position: relative;
  z-index: 2;
  margin-left: 72px;
  border: 1px solid rgba(143, 215, 255, 0.34);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 201, 154, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(7, 13, 26, 0.9);
  box-shadow:
    0 0 0 1px rgba(25, 201, 154, 0.12),
    0 0 34px rgba(47, 125, 244, 0.3),
    0 0 42px rgba(25, 201, 154, 0.24),
    0 42px 110px rgba(0, 0, 0, 0.56);
  overflow: hidden;
}

.tt-board-rail {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 36px;
  bottom: 94px;
  width: 72px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 16px;
  border: 1px solid rgba(143, 215, 255, 0.26);
  border-radius: 24px;
  background: rgba(5, 12, 24, 0.9);
  box-shadow: 0 0 28px rgba(47, 125, 244, 0.28), 0 0 28px rgba(25, 201, 154, 0.18);
  padding-top: 18px;
}

.tt-board-rail b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--tt-green), var(--tt-blue));
  color: #03111b;
  font-weight: 950;
}

.tt-board-rail span {
  width: 36px;
  height: 34px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.tt-board-platform {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: -18px;
  bottom: 28px;
  height: 108px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(25, 201, 154, 0.28), transparent 48%),
    linear-gradient(90deg, rgba(25, 201, 154, 0.8), rgba(47, 125, 244, 0.95));
  filter: blur(0.2px);
  box-shadow: 0 0 34px rgba(25, 201, 154, 0.45), 0 0 54px rgba(47, 125, 244, 0.45);
  transform: translateY(68px) rotateX(72deg);
}

.tt-board-bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  padding: 0 18px;
}

.tt-board-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
}

.tt-board-bar span:nth-child(2) {
  background: #f59e0b;
}

.tt-board-bar span:nth-child(3) {
  background: var(--tt-green);
}

.tt-board-bar b {
  margin-left: auto;
  color: var(--tt-muted);
  font-size: 0.78rem;
}

.tt-board-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px;
}

.tt-board-metrics i,
.tt-chart-panel,
.tt-funnel-panel {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  font-style: normal;
}

.tt-board-metrics strong,
.tt-board-metrics small {
  display: block;
}

.tt-board-metrics strong {
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
}

.tt-board-metrics small {
  color: var(--tt-green);
  font-weight: 900;
}

.tt-board-panels {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 14px;
  padding: 0 18px 20px;
}

.tt-chart-panel,
.tt-funnel-panel {
  min-height: 190px;
  position: relative;
  overflow: hidden;
}

.tt-chart-panel small,
.tt-funnel-panel small {
  display: block;
  color: #ffffff;
  font-weight: 850;
  margin-bottom: 18px;
}

.tt-chart-panel {
  background:
    linear-gradient(90deg, rgba(143, 215, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(143, 215, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.045);
  background-size: 32px 32px;
}

.tt-chart-panel span {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tt-blue), var(--tt-green));
  transform-origin: left;
}

.tt-chart-panel span:nth-of-type(1) { transform: rotate(-8deg) translateY(18px) scaleX(0.48); }
.tt-chart-panel span:nth-of-type(2) { transform: rotate(16deg) translate(94px, -8px) scaleX(0.34); }
.tt-chart-panel span:nth-of-type(3) { transform: rotate(-10deg) translate(182px, -18px) scaleX(0.32); }
.tt-chart-panel span:nth-of-type(4) { transform: rotate(-42deg) translate(250px, -58px) scaleX(0.36); box-shadow: 0 0 24px rgba(25, 201, 154, 0.86); }

.tt-chart-panel em {
  position: absolute;
  right: 72px;
  top: 84px;
  border: 1px solid rgba(143, 215, 255, 0.42);
  border-radius: 12px;
  background: rgba(5, 12, 24, 0.86);
  padding: 12px;
  color: #ffffff;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 950;
}

.tt-funnel-panel b {
  display: block;
  height: 36px;
  margin: 9px auto 0;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 14% 100%);
  background: linear-gradient(135deg, var(--tt-blue), var(--tt-green));
}

.tt-funnel-panel b:nth-of-type(1) { width: 84%; }
.tt-funnel-panel b:nth-of-type(2) { width: 66%; }
.tt-funnel-panel b:nth-of-type(3) { width: 48%; }
.tt-funnel-panel b:nth-of-type(4) { width: 30%; }
}

.tt-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 0 0 18px;
  border: 1px solid rgba(25, 201, 154, 0.28);
  border-radius: 999px;
  background: rgba(25, 201, 154, 0.1);
  color: #b7f7e6;
  padding: 8px 12px;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tt-heading-xl,
.tt-heading-lg,
.tt-heading-md {
  margin: 0;
  font-family: var(--tt-display);
  line-height: 1.03;
  letter-spacing: 0;
}

.tt-heading-xl {
  max-width: 680px;
  font-size: clamp(3rem, 6.2vw, 6rem);
}

.tt-heading-lg {
  max-width: 880px;
  font-size: clamp(2.15rem, 4.8vw, 4.4rem);
}

.tt-heading-md {
  font-size: clamp(1.45rem, 2.8vw, 2.5rem);
}

.tt-gradient {
  background: linear-gradient(135deg, #8fd7ff 0%, #21d99b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tt-hero-copy,
.tt-lede {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--tt-muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.tt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.tt-center {
  justify-content: center;
}

.tt-button,
.wp-block-button__link {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px !important;
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.tt-button::before,
.wp-block-button__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-140%);
  transition: transform 520ms ease;
}

.tt-button:hover::before,
.wp-block-button__link:hover::before {
  transform: translateX(140%);
}

.tt-button:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
}

.tt-button-primary,
.wp-block-button__link {
  background: linear-gradient(135deg, var(--tt-blue), var(--tt-green));
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(47, 125, 244, 0.24);
}

.tt-button-secondary {
  border-color: var(--tt-line-strong);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
}

.tt-grid {
  display: grid;
  gap: 22px;
}

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

.tt-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tt-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tt-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.tt-card {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--tt-line);
  border-radius: var(--tt-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.034)),
    rgba(10, 18, 34, 0.72);
  padding: clamp(20px, 2.4vw, 30px);
  box-shadow: var(--tt-shadow);
  overflow: hidden;
}

.tt-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 231, 249, 0.55), transparent);
  transform: translateX(-40%);
  transition: transform 500ms ease;
}

.tt-card:hover::after {
  transform: translateX(40%);
}

.tt-card h3 {
  margin: 0 0 10px;
  font-family: var(--tt-display);
  font-size: 1.24rem;
  line-height: 1.16;
}

.tt-card p,
.tt-card li {
  color: var(--tt-muted);
}

.tt-card p:last-child,
.tt-card ul:last-child {
  margin-bottom: 0;
}

.tt-card-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: #87f5dc;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tt-lift {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.tt-lift:hover {
  transform: translateY(-7px);
  border-color: rgba(110, 231, 249, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(10, 18, 34, 0.78);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.tt-check-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tt-check-list li {
  position: relative;
  padding-left: 22px;
}

.tt-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--tt-green);
  box-shadow: 0 0 18px rgba(25, 201, 154, 0.65);
}

.tt-text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: #9be7ff;
  font-weight: 950;
  text-decoration: none;
}

.tt-text-link::after {
  content: ">";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.tt-text-link:hover::after {
  transform: translateX(4px);
}

.tt-light-band {
  background: #f8fafc;
  color: var(--tt-dark-text);
}

.tt-light-band .tt-eyebrow {
  border-color: rgba(20, 83, 45, 0.18);
  background: #ecfdf5;
  color: #08724f;
}

.tt-light-band .tt-lede,
.tt-light-band .tt-card p,
.tt-light-band .tt-card li,
.tt-light-band .tt-section-head p {
  color: var(--tt-dark-muted);
}

.tt-light-band .tt-card {
  border-color: #dbe4ef;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.tt-light-band .tt-card-kicker {
  color: #08724f;
}

.tt-service-grid .tt-card,
.tt-portfolio-grid .tt-card {
  min-height: 280px;
}

.tt-portfolio-grid .tt-card {
  background:
    linear-gradient(145deg, rgba(47, 125, 244, 0.13), rgba(25, 201, 154, 0.1)),
    rgba(255, 255, 255, 0.96);
}

.tt-client-strip {
  padding: 24px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.tt-marquee {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: tt-marquee 28s linear infinite;
}

.tt-marquee span {
  min-width: 150px;
  border: 1px solid var(--tt-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: #dbeafe;
  padding: 12px 16px;
  text-align: center;
  font-weight: 950;
}

.tt-orbit-system {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(47, 125, 244, 0.12), rgba(25, 201, 154, 0.08)),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: var(--tt-shadow);
}

.tt-orbit-system strong {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 180px;
  min-height: 180px;
  display: grid;
  place-items: center;
  margin: -90px 0 0 -90px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tt-blue), var(--tt-green));
  text-align: center;
  padding: 22px;
  line-height: 1.15;
  box-shadow: 0 30px 80px rgba(47, 125, 244, 0.32);
}

.tt-orbit-system span {
  position: absolute;
  width: 120px;
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--tt-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-weight: 900;
  animation: tt-float 5s ease-in-out infinite;
}

.tt-orbit-system span:nth-child(1) { top: 12%; left: 16%; }
.tt-orbit-system span:nth-child(2) { top: 16%; right: 13%; animation-delay: 0.4s; }
.tt-orbit-system span:nth-child(3) { top: 55%; right: 8%; animation-delay: 0.8s; }
.tt-orbit-system span:nth-child(4) { bottom: 12%; left: 25%; animation-delay: 1.2s; }
.tt-orbit-system span:nth-child(5) { top: 52%; left: 8%; animation-delay: 1.6s; }

.tt-cta-section {
  padding-top: 0;
}

.tt-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(110, 231, 249, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(47, 125, 244, 0.28), rgba(25, 201, 154, 0.18)),
    rgba(255, 255, 255, 0.06);
  padding: clamp(28px, 5vw, 64px);
  box-shadow: var(--tt-shadow);
}

.tt-cta p {
  max-width: 720px;
  color: var(--tt-muted);
}

.tt-form {
  display: grid;
  gap: 12px;
}

.tt-form input,
.tt-form select,
.tt-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dbe4ef;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  padding: 12px 14px;
  font: inherit;
}

.tt-form textarea {
  min-height: 140px;
}

.tt-contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.tt-contact-stack a,
.tt-contact-stack span {
  display: block;
  border: 1px solid #dbe4ef;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  padding: 12px 14px;
  text-decoration: none;
  font-weight: 850;
}

.tt-legal-card {
  padding: clamp(22px, 4vw, 42px);
}

.tt-legal-card p {
  color: var(--tt-dark-muted);
}

.tt-site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: #03060d;
  padding: 54px 0 26px;
}

.tt-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}

.tt-site-footer h3,
.tt-site-footer h4 {
  margin-top: 0;
}

.tt-site-footer p,
.tt-site-footer a {
  color: var(--tt-muted);
}

.tt-site-footer a {
  display: block;
  text-decoration: none;
  margin-bottom: 8px;
}

.tt-footer-line {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--tt-soft);
  font-size: 0.88rem;
}

.entry-content > * {
  max-width: var(--tt-container);
  margin-left: auto;
  margin-right: auto;
}

.entry-content > .alignfull,
.entry-content > .tt-section,
.entry-content > .tt-hero,
.entry-content > .tt-client-strip {
  max-width: none;
}

.tt-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.tt-animations-ready .tt-reveal {
  opacity: 0;
  transform: translateY(26px);
}

.tt-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes tt-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes tt-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

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

@media (max-width: 1120px) {
  .tt-floating-board {
    opacity: 0.28;
    right: -160px;
    width: 620px;
  }

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

@media (max-width: 980px) {
  body.admin-bar .tt-site-header {
    top: 46px;
  }

  .tt-nav {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .tt-mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .tt-menu-wrap {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    justify-content: stretch;
    border: 1px solid var(--tt-line);
    border-radius: 14px;
    background: rgba(5, 8, 17, 0.96);
    padding: 12px;
    box-shadow: var(--tt-shadow);
  }

  .tt-menu-wrap.is-open {
    display: block;
  }

  .tt-menu {
    display: grid;
    gap: 4px;
  }

  .tt-menu a {
    width: 100%;
  }

  .tt-header-actions {
    grid-column: 2;
  }

  .tt-header-actions .tt-header-cta {
    display: none;
  }

  .tt-grid-2,
  .tt-grid-3,
  .tt-split,
  .tt-footer-grid {
    grid-template-columns: 1fr;
  }

  .tt-floating-board {
    top: auto;
    bottom: -90px;
    right: -220px;
  }
}

@media (max-width: 680px) {
  .tt-container {
    width: min(100% - 24px, var(--tt-container));
  }

  .tt-brand-text span {
    display: none;
  }

  .tt-hero {
    min-height: 92vh;
    align-items: start;
    padding-top: 70px;
  }

  .tt-heading-xl {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .tt-grid-4 {
    grid-template-columns: 1fr;
  }

  .tt-actions .tt-button {
    width: 100%;
  }

  .tt-floating-board {
    width: 430px;
    min-height: 330px;
    right: -250px;
    bottom: -40px;
    opacity: 0.22;
  }

  .tt-board-metrics {
    grid-template-columns: 1fr;
  }

  .tt-orbit-system {
    min-height: 420px;
  }
}
