/* Goods Trolley — Marketing landing */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600&display=swap');

:root {
  --gt-ink: #0b1f33;
  --gt-ink-soft: #1a334d;
  --gt-slate: #3d566e;
  --gt-muted: #5c738a;
  --gt-line: rgba(11, 31, 51, 0.1);
  --gt-surface: #f4f7fb;
  --gt-white: #ffffff;
  --gt-blue: #4a7db8;
  --gt-blue-deep: #2f5f94;
  --gt-lime: #9fd400;
  --gt-lime-deep: #7fb000;
  --gt-lime-glow: rgba(159, 212, 0, 0.35);
  --gt-hero-start: #071825;
  --gt-hero-mid: #0d2a40;
  --gt-hero-end: #13405c;
  --gt-radius: 14px;
  --gt-radius-lg: 22px;
  --gt-shadow: 0 18px 50px rgba(7, 24, 37, 0.18);
  --gt-max: 1120px;
  --gt-font: 'Outfit', system-ui, sans-serif;
  --gt-serif: 'Source Serif 4', Georgia, serif;
  --header-h: 72px;
}

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

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

body.gt-landing {
  margin: 0;
  font-family: var(--gt-font);
  color: var(--gt-ink);
  background: var(--gt-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

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

.gt-container {
  width: min(100% - 2.5rem, var(--gt-max));
  margin-inline: auto;
}

/* —— Header —— */
.gt-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.gt-header.is-scrolled,
.gt-header--solid {
  background: rgba(7, 24, 37, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.gt-header--solid {
  background: var(--gt-hero-start);
}

.gt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--gt-max));
  margin-inline: auto;
}

.gt-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.gt-logo img {
  height: 40px;
  width: auto;
}

.gt-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.gt-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.gt-nav a:hover {
  color: var(--gt-lime);
}

.gt-nav__login {
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff !important;
}

.gt-nav__login:hover {
  border-color: var(--gt-lime);
  background: rgba(159, 212, 0, 0.12);
}

.gt-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.gt-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gt-nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gt-nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.gt-nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Buttons —— */
.gt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-family: var(--gt-font);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gt-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.gt-btn--lime {
  background: var(--gt-lime);
  color: var(--gt-ink);
  box-shadow: 0 10px 28px var(--gt-lime-glow);
}

.gt-btn--lime:hover {
  background: #b4e820;
  transform: translateY(-1px);
}

.gt-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.gt-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.gt-btn--ink {
  background: var(--gt-ink);
  color: #fff;
}

.gt-btn--ink:hover {
  background: var(--gt-ink-soft);
  transform: translateY(-1px);
}

.gt-btn--outline-ink {
  background: transparent;
  color: var(--gt-ink);
  border: 1.5px solid var(--gt-line);
}

.gt-btn--outline-ink:hover {
  border-color: var(--gt-ink);
}

.gt-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* —— Hero —— */
.gt-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 3.5rem) 0 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(159, 212, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(74, 125, 184, 0.22), transparent 50%),
    linear-gradient(155deg, var(--gt-hero-start) 0%, var(--gt-hero-mid) 48%, var(--gt-hero-end) 100%);
  color: #fff;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.gt-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, #000 20%, transparent 75%);
  pointer-events: none;
  overflow: hidden;
  animation: gt-grid-drift 28s linear infinite;
}

@keyframes gt-grid-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-64px, -32px, 0); }
}

.gt-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  flex: 1 1 auto;
  width: min(100% - 2.5rem, var(--gt-max));
  margin-inline: auto;
  padding-bottom: 2.5rem;
  min-height: 0;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.gt-hero__stage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem 2.5rem;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.gt-hero__copy {
  flex: 1 1 340px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.gt-hero__aside {
  flex: 1 1 320px;
  max-width: 460px;
  margin-left: auto;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.gt-hero-compose {
  position: relative;
  min-height: 340px;
  max-width: 100%;
  overflow: visible;
  padding: 0.75rem 1.5rem 1.75rem 0.35rem;
  box-sizing: border-box;
  transform-style: preserve-3d;
  will-change: transform;
}

.gt-hero__pill {
  display: inline-block;
  margin: 0;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(159, 212, 0, 0.35);
  background: rgba(159, 212, 0, 0.1);
  color: var(--gt-lime);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gt-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}

.gt-brand-mark img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

.gt-hero h1 {
  margin: 0;
  font-family: var(--gt-serif);
  font-size: clamp(2.05rem, 4.2vw, 3.1rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.gt-hero h1 em {
  font-style: normal;
  color: var(--gt-lime);
}

.gt-hero__lead {
  margin: 0;
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  font-weight: 400;
}

.gt-hero__copy .gt-cta-row {
  margin-top: 0.35rem;
}

.gt-hero__note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.gt-hero__note a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero right composition */
.gt-hero-compose__glow {
  position: absolute;
  inset: 10% 5% 5% 15%;
  background: radial-gradient(circle, rgba(159, 212, 0, 0.22), transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}

.gt-hero-compose__panel {
  position: relative;
  z-index: 1;
  width: 88%;
  margin-left: 0;
  padding: 1rem 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.gt-hero-compose__chrome {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.gt-hero-compose__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.gt-hero-compose__chrome span:first-child {
  background: #ff6b6b;
}

.gt-hero-compose__chrome span:nth-child(2) {
  background: #ffd166;
}

.gt-hero-compose__chrome span:nth-child(3) {
  background: var(--gt-lime);
}

.gt-hero-compose__screen {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 148px;
  padding: 0.15rem 0;
}

.gt-hero-compose__rows {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.gt-hero-compose__row {
  height: 10px;
  width: 72%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.gt-hero-compose__row--wide {
  width: 100%;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(159, 212, 0, 0.28), rgba(74, 125, 184, 0.35), rgba(159, 212, 0, 0.28));
  background-size: 200% 100%;
  animation: gt-shimmer 3.2s linear infinite;
}

.gt-hero-compose__row--mid {
  width: 55%;
}

.gt-hero-compose__metrics {
  display: flex;
  gap: 0.5rem;
  margin: 0.25rem 0;
}

.gt-hero-compose__metrics span {
  flex: 1;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gt-hero-compose__metrics span:nth-child(2) {
  background: rgba(159, 212, 0, 0.14);
  border-color: rgba(159, 212, 0, 0.25);
}

.gt-hero-compose__caption {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.gt-hero-compose__phone {
  position: absolute;
  z-index: 2;
  width: 86px;
  height: 150px;
  padding: 1.15rem 0.35rem 0.4rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #14344d 0%, #0a1f30 100%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.gt-hero-compose__phone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.gt-hero-compose__phone-label {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-top: auto;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gt-lime);
  text-align: center;
}

.gt-hero-compose__phone--a {
  right: 6%;
  top: 8%;
  transform: rotate(6deg);
}

.gt-hero-compose__phone--b {
  right: 22%;
  bottom: 2%;
  transform: rotate(-4deg);
  z-index: 3;
}

.gt-hero-compose__phone--c {
  right: 0;
  bottom: 18%;
  transform: rotate(10deg);
  opacity: 0.95;
}

.gt-hero__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  margin-top: auto;
}

.gt-hero__strip a {
  flex: 1 1 140px;
  min-width: 0;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--gt-radius);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.gt-hero__strip a:hover {
  border-color: rgba(159, 212, 0, 0.45);
  background: rgba(159, 212, 0, 0.08);
  transform: translateY(-2px);
}

.gt-hero__strip-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gt-lime);
}

.gt-hero__strip-title {
  display: block;
  font-size: 1rem;
  font-weight: 650;
  color: #fff;
}

.gt-hero__visual {
  width: 100%;
}

.gt-shot {
  position: relative;
  border-radius: var(--gt-radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #132f46 0%, #0a1e30 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--gt-shadow);
  aspect-ratio: 16 / 9;
  animation: gt-float 6s ease-in-out infinite;
}

@keyframes gt-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.gt-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.gt-shot--contain {
  background: #ffffff;
}

.gt-shot--contain img {
  object-fit: contain;
  object-position: top center;
}

.gt-shot__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.5rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(159, 212, 0, 0.08), transparent 40%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.03) 12px,
      rgba(255, 255, 255, 0.03) 24px
    );
}

.gt-shot__placeholder[hidden],
.gt-shot img[hidden] {
  display: none !important;
}

.gt-shot__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gt-lime);
}

.gt-shot__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.gt-shot__hint {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 22rem;
}

.gt-shot--phone {
  aspect-ratio: 9 / 17;
  max-width: 240px;
  margin-inline: auto;
  border-radius: 28px;
  animation: none;
}

.gt-shot--phone .gt-shot__placeholder {
  border-radius: 28px;
}

/* —— Sections shared —— */
.gt-section {
  padding: 5rem 0;
}

.gt-section#features {
  padding-top: 5.5rem;
}

.gt-section--surface {
  background: var(--gt-surface);
}

.gt-section--ink {
  background: var(--gt-ink);
  color: #fff;
}

.gt-eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gt-blue);
}

.gt-section--ink .gt-eyebrow {
  color: var(--gt-lime);
}

.gt-section__head {
  max-width: 560px;
  margin-bottom: 2.75rem;
}

.gt-section__head--center {
  margin-inline: auto;
  text-align: center;
}

.gt-section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--gt-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--gt-ink);
}

.gt-section--ink h2 {
  color: #fff;
}

.gt-section__head p {
  margin: 0;
  color: var(--gt-muted);
  font-size: 1.05rem;
}

.gt-section--ink .gt-section__head p {
  color: rgba(255, 255, 255, 0.68);
}

/* —— Features —— */
.gt-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.gt-feature {
  flex: 1 1 280px;
  padding: 1.5rem 1.4rem 1.55rem;
  border-top: 2px solid var(--gt-lime);
  background: transparent;
}

.gt-feature__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--gt-blue-deep);
}

.gt-feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 650;
  color: var(--gt-ink);
}

.gt-feature p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gt-muted);
}

/* —— Apps —— */
.gt-apps {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.gt-app {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem 3rem;
}

.gt-app:nth-child(even) {
  flex-direction: row-reverse;
}

.gt-app__copy {
  flex: 1 1 320px;
  min-width: 0;
}

.gt-app__visual {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
}

.gt-app__tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(159, 212, 0, 0.18);
  color: var(--gt-lime-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gt-section--ink .gt-app__tag {
  background: rgba(159, 212, 0, 0.15);
  color: var(--gt-lime);
}

.gt-app h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
}

.gt-app p {
  margin: 0 0 1.1rem;
  color: var(--gt-muted);
  max-width: 36rem;
}

.gt-section--ink .gt-app p {
  color: rgba(255, 255, 255, 0.68);
}

.gt-app ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.gt-app li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--gt-slate);
}

.gt-section--ink .gt-app li {
  color: rgba(255, 255, 255, 0.82);
}

.gt-app li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gt-lime);
}

/* —— Platform / admin —— */
.gt-platform {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3rem;
  align-items: center;
}

.gt-platform__copy {
  flex: 1 1 280px;
  max-width: 440px;
}

.gt-platform__visual {
  flex: 1.4 1 280px;
  min-width: 0;
  max-width: 100%;
}

.gt-platform__visual .gt-shot {
  width: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 10;
}

.gt-platform__list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.gt-platform__list li {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gt-ink-soft);
  background: var(--gt-white);
  border: 1px solid var(--gt-line);
  border-radius: 8px;
}

.gt-shot--light {
  background: linear-gradient(160deg, #e8eef5 0%, #d5e0ec 100%);
  border-color: var(--gt-line);
  box-shadow: 0 16px 40px rgba(11, 31, 51, 0.1);
  animation: none;
}

.gt-shot--light .gt-shot__label {
  color: var(--gt-blue-deep);
}

.gt-shot--light .gt-shot__title {
  color: var(--gt-ink);
}

.gt-shot--light .gt-shot__hint {
  color: var(--gt-muted);
}

.gt-shot--light .gt-shot__placeholder {
  background:
    linear-gradient(135deg, rgba(74, 125, 184, 0.1), transparent 45%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(11, 31, 51, 0.03) 12px,
      rgba(11, 31, 51, 0.03) 24px
    );
}

/* —— Flow —— */
.gt-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  counter-reset: gt-step;
}

.gt-flow__step {
  flex: 1 1 200px;
  padding-top: 0.25rem;
  counter-increment: gt-step;
}

.gt-flow__step::before {
  content: counter(gt-step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gt-lime-deep);
}

.gt-flow__step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-weight: 650;
}

.gt-flow__step p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--gt-muted);
}

/* —— Contact —— */
.gt-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
  align-items: flex-start;
}

.gt-contact__copy {
  flex: 1 1 300px;
}

.gt-contact__actions {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gt-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--gt-radius);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.gt-contact-card:hover {
  border-color: rgba(159, 212, 0, 0.45);
  background: rgba(159, 212, 0, 0.08);
}

.gt-contact-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gt-lime);
}

.gt-contact-card__value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.gt-contact-card__meta {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.gt-contact__person {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

.gt-contact__person strong {
  color: #fff;
  font-weight: 600;
}

/* —— Footer —— */
.gt-footer {
  padding: 2rem 0;
  background: #051018;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.gt-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gt-footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.gt-footer a:hover {
  color: var(--gt-lime);
}

.gt-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* —— Reveal motion —— */
.gt-reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  transition-delay: calc(var(--stagger, 0) * 90ms);
}

.gt-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.gt-features .gt-feature:nth-child(1) { --stagger: 0; }
.gt-features .gt-feature:nth-child(2) { --stagger: 1; }
.gt-features .gt-feature:nth-child(3) { --stagger: 2; }
.gt-features .gt-feature:nth-child(4) { --stagger: 3; }
.gt-features .gt-feature:nth-child(5) { --stagger: 4; }
.gt-features .gt-feature:nth-child(6) { --stagger: 5; }

.gt-feature {
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.gt-feature:hover {
  transform: translateY(-6px);
  border-top-color: #b4e820;
  background: rgba(159, 212, 0, 0.04);
}

.gt-feature__icon {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}

.gt-feature:hover .gt-feature__icon {
  transform: translateY(-4px) rotate(-6deg) scale(1.08);
  color: var(--gt-lime-deep);
}

.gt-flow__step {
  transition: transform 0.35s ease;
}

.gt-flow__step:hover {
  transform: translateY(-4px);
}

.gt-app {
  transition: transform 0.4s ease;
}

/* —— Signature motion system —— */
.gt-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
  background: transparent;
}

.gt-scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gt-lime), #4a7db8);
  box-shadow: 0 0 12px rgba(159, 212, 0, 0.45);
  transition: width 0.05s linear;
}

.gt-hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gt-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  will-change: transform;
}

.gt-hero__orb--a {
  width: 340px;
  height: 340px;
  top: -8%;
  right: 8%;
  background: rgba(159, 212, 0, 0.35);
  animation: gt-orb-a 14s ease-in-out infinite alternate;
}

.gt-hero__orb--b {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: -4%;
  background: rgba(74, 125, 184, 0.4);
  animation: gt-orb-b 18s ease-in-out infinite alternate;
}

.gt-hero__orb--c {
  width: 180px;
  height: 180px;
  top: 42%;
  left: 38%;
  background: rgba(159, 212, 0, 0.18);
  animation: gt-orb-c 11s ease-in-out infinite alternate;
}

@keyframes gt-orb-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-60px, 50px, 0) scale(1.15); }
}

@keyframes gt-orb-b {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(70px, -40px, 0) scale(1.2); }
}

@keyframes gt-orb-c {
  from { transform: translate3d(0, 0, 0) scale(0.9); }
  to { transform: translate3d(40px, 30px, 0) scale(1.25); }
}

.gt-hero-enter {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
}

.gt-landing.is-ready .gt-hero-enter {
  animation: gt-hero-enter 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--enter, 0) * 0.12s + 0.15s);
}

@keyframes gt-hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.gt-hero h1 em {
  position: relative;
  display: inline;
}

.gt-landing.is-ready .gt-hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.12em;
  background: linear-gradient(90deg, transparent, var(--gt-lime), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: gt-em-line 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
  opacity: 0.85;
}

@keyframes gt-em-line {
  to { transform: scaleX(1); }
}

.gt-btn--pulse {
  position: relative;
  overflow: hidden;
}

.gt-btn--pulse::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(159, 212, 0, 0.7);
  opacity: 0;
  animation: gt-btn-ring 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes gt-btn-ring {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { opacity: 0; }
}

.gt-hero-compose__panel {
  animation: gt-panel-breathe 6s ease-in-out infinite;
}

.gt-hero-compose__phone--a {
  animation: gt-phone-float-a 5.5s ease-in-out infinite;
}

.gt-hero-compose__phone--b {
  animation: gt-phone-float-b 6.2s ease-in-out infinite;
}

.gt-hero-compose__phone--c {
  animation: gt-phone-float-c 4.8s ease-in-out infinite;
}

@keyframes gt-panel-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes gt-phone-float-a {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-10px); }
}

@keyframes gt-phone-float-b {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-14px); }
}

@keyframes gt-phone-float-c {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-8px); }
}

.gt-hero-compose__row--wide {
  background-size: 200% 100%;
  animation: gt-shimmer 3.2s linear infinite;
}

.gt-hero-compose__metrics span:nth-child(2) {
  animation: gt-metric-pulse 2.8s ease-in-out infinite;
}

@keyframes gt-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes gt-metric-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(1.08); opacity: 0.85; }
}

.gt-hero__strip a {
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gt-landing.is-ready .gt-hero__strip a {
  animation: gt-strip-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.gt-landing.is-ready .gt-hero__strip a:nth-child(1) { animation-delay: 0.85s; }
.gt-landing.is-ready .gt-hero__strip a:nth-child(2) { animation-delay: 0.95s; }
.gt-landing.is-ready .gt-hero__strip a:nth-child(3) { animation-delay: 1.05s; }
.gt-landing.is-ready .gt-hero__strip a:nth-child(4) { animation-delay: 1.15s; }

@keyframes gt-strip-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.gt-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  z-index: 2;
  width: 28px;
  height: 44px;
  margin-left: -14px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color 0.2s ease, opacity 0.3s ease;
}

.gt-scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gt-lime);
  animation: gt-cue-bounce 1.6s ease-in-out infinite;
}

.gt-scroll-cue:hover {
  border-color: var(--gt-lime);
}

@keyframes gt-cue-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.35; }
}

.gt-section--ink {
  position: relative;
  overflow: hidden;
}

.gt-section--ink::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -80px;
  border-radius: 50%;
  background: rgba(159, 212, 0, 0.08);
  filter: blur(20px);
  animation: gt-orb-b 20s ease-in-out infinite alternate;
  pointer-events: none;
}

.gt-contact-card {
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gt-contact-card:hover {
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .gt-hero__grid,
  .gt-hero__orb,
  .gt-hero-compose,
  .gt-hero-compose__panel,
  .gt-hero-compose__phone--a,
  .gt-hero-compose__phone--b,
  .gt-hero-compose__phone--c,
  .gt-hero-compose__row--wide,
  .gt-btn--pulse::after,
  .gt-scroll-cue span,
  .gt-shot,
  .gt-reveal,
  .gt-hero-enter,
  .gt-section--ink::before {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .gt-landing.is-ready .gt-hero h1 em::after {
    animation: none;
    transform: scaleX(1);
  }
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .gt-scroll-cue {
    display: none;
  }

  .gt-nav-toggle {
    display: flex;
  }

  .gt-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(7, 24, 37, 0.97);
    backdrop-filter: blur(12px);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .gt-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .gt-nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .gt-nav__login {
    margin-top: 0.5rem;
    text-align: center;
    border-radius: 10px;
  }

  .gt-hero {
    padding-top: calc(var(--header-h) + 2.75rem);
    min-height: 100vh;
    min-height: 100dvh;
  }

  .gt-hero__aside {
    max-width: 100%;
    margin-inline: auto;
  }

  .gt-hero__copy {
    max-width: none;
  }

  .gt-hero-compose {
    min-height: 300px;
  }

  .gt-hero-compose__phone--a {
    right: 8%;
  }

  .gt-hero-compose__phone--b {
    right: 28%;
  }

  .gt-hero-compose__phone--c {
    right: 2%;
  }

  .gt-brand-mark img {
    height: 44px;
  }

  .gt-app:nth-child(even) {
    flex-direction: row;
  }
}

@media (max-width: 560px) {
  .gt-container,
  .gt-header__inner,
  .gt-hero__inner {
    width: min(100% - 1.5rem, var(--gt-max));
  }

  .gt-hero__inner {
    gap: 2.75rem;
    padding-bottom: 3.25rem;
  }

  .gt-hero-compose {
    min-height: 280px;
  }

  .gt-hero-compose__phone {
    width: 68px;
    height: 120px;
  }

  .gt-hero-compose__phone--a {
    right: 4%;
    top: 12%;
  }

  .gt-hero-compose__phone--b {
    right: 26%;
    bottom: 4%;
  }

  .gt-hero-compose__phone--c {
    right: 0;
    bottom: 20%;
  }

  .gt-section {
    padding: 3.75rem 0;
  }

  .gt-section#features {
    padding-top: 4rem;
  }

  .gt-btn {
    width: 100%;
  }

  .gt-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .gt-hero__strip a {
    flex: 1 1 calc(50% - 1rem);
  }

  .gt-platform__copy {
    max-width: none;
  }
}
