:root {
  color-scheme: light;
  --ink: #101828;
  --muted: #667085;
  --line: #d9e2ee;
  --paper: #ffffff;
  --soft: #f6f9fc;
  --accent: #0f766e;
  --accent-2: #2563eb;
  --accent-3: #ef4444;
  --amber: #f59e0b;
  --violet: #6d5dfc;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 118, 110, 0.12), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(245, 158, 11, 0.1), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f7fbfa 100%);
  color: var(--ink);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(217, 226, 238, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 12px;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a,
.nav-cta,
.primary-btn,
.secondary-btn {
  border-radius: 7px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.desktop-nav a {
  padding: 9px 11px;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: #eef6f4;
}

.nav-cta,
.secondary-btn {
  border: 1px solid var(--line);
  background: #ffffff;
}

.nav-cta {
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 650;
}

.nav-cta:hover,
.secondary-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 118, 110, 0.36);
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
}

.section-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 24px 0 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.3vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0;
}

.hero-text,
.section-heading p,
.company-panel p,
.feature-card p,
.timeline-item p,
.insight-panels p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 650px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 720;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), #1f4f80);
  box-shadow: 0 16px 28px rgba(16, 24, 40, 0.18);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(16, 24, 40, 0.24);
}

.secondary-btn {
  color: var(--ink);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.metric-strip div {
  padding: 14px;
  border: 1px solid rgba(217, 226, 238, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.metric-strip dt {
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 780;
}

.metric-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  padding: 0;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 14px;
  background: #101828;
  box-shadow: 0 30px 90px rgba(16, 24, 40, 0.22);
  transform: perspective(1000px) rotateX(2deg) rotateY(-3deg);
  animation: float-card 5.6s ease-in-out infinite;
  overflow: hidden;
}

.hero-visual::after {
  position: absolute;
  right: 26px;
  bottom: -24px;
  width: 54%;
  height: 42px;
  content: "";
  border-radius: 50%;
  background: rgba(16, 24, 40, 0.16);
  filter: blur(24px);
  z-index: -1;
}

.command-window {
  min-height: 520px;
  padding: 14px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.2), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(245, 158, 11, 0.18), transparent 20rem),
    #101828;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 14px;
  color: #cbd5e1;
  font-size: 13px;
}

.window-bar span {
  width: 42px;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 6px 6px, #ef4444 0 5px, transparent 6px),
    radial-gradient(circle at 21px 6px, #f59e0b 0 5px, transparent 6px),
    radial-gradient(circle at 36px 6px, #22c55e 0 5px, transparent 6px);
}

.window-bar strong {
  color: #ffffff;
  font-size: 14px;
}

.window-bar em {
  padding: 6px 10px;
  border-radius: 7px;
  background: rgba(15, 118, 110, 0.22);
  color: #8df2d8;
  font-style: normal;
  font-weight: 750;
}

.hero-dashboard {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 12px;
}

.hero-panel,
.mini-ad-card,
.analytics-board,
.creative-tile,
.global-board {
  border: 1px solid rgba(217, 226, 238, 0.16);
  border-radius: 10px;
}

.hero-panel {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.mini-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: #8df2d8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-brief h3,
.mini-ad-card h4,
.creative-tile h3,
.translation-card h3 {
  margin: 0;
  letter-spacing: 0;
}

.hero-brief h3 {
  max-width: 260px;
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.12;
}

.prompt-lines {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.prompt-lines span {
  height: 8px;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.28);
}

.prompt-lines span:nth-child(2) {
  width: 82%;
}

.prompt-lines span:nth-child(3) {
  display: none;
}

.batch-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
}

.batch-status strong {
  font-size: 26px;
  line-height: 1;
}

.batch-status span {
  color: #cbd5e1;
  font-size: 13px;
}

.variant-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  grid-row: span 2;
}

.mini-ad-card {
  position: relative;
  min-height: 230px;
  padding: 10px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.dark-card {
  background: #0b1220;
}

.light-card {
  color: #101828;
  background: #ffffff;
}

.draft-badge,
.upload-badge,
.creative-tile b,
.translation-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.draft-badge,
.upload-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 9px;
  z-index: 1;
}

.draft-badge {
  color: #064e3b;
  background: #bbf7d0;
}

.upload-badge {
  color: #ffffff;
  background: var(--violet);
}

.ad-art {
  height: 104px;
  margin-bottom: 12px;
  border-radius: 8px;
  background-color: #111827;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.figure-one {
  background-image: url("./assets/creative-energy.png");
}

.figure-two {
  background-image: url("./assets/creative-basics.png");
}

.figure-three {
  background-image: url("./assets/creative-health.png");
}

.mini-ad-card h4 {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.1;
}

.mini-ad-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.4;
}

.light-card p {
  color: #667085;
}

.hero-analytics {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 12px;
  align-items: center;
}

.hero-analytics strong,
.hero-analytics small {
  display: block;
}

.hero-analytics strong {
  font-size: 24px;
}

.hero-analytics small {
  margin-top: 5px;
  color: #cbd5e1;
}

.hero-analytics svg {
  width: 100%;
  max-height: 80px;
  overflow: visible;
}

.hero-analytics path,
.analytics-board path {
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-width: 7;
}

.hero-analytics .line-two {
  stroke: #10b981;
  stroke-width: 6;
}

.hero-language {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.hero-language .mini-label {
  grid-column: 1 / -1;
}

.language-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
}

.language-row b {
  color: #ffffff;
}

.language-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-row.active {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.28);
}

.platform-section,
.showcase-section,
.workflow-section,
.analytics-showcase,
.global-section,
.insights-section,
.company-section {
  padding: 84px 0;
}

.platform-section {
  padding-top: 40px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.insight-panels article,
.timeline,
.company-panel {
  border: 1px solid rgba(217, 226, 238, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.08);
}

.feature-card {
  min-height: 244px;
  padding: 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 24px 58px rgba(16, 24, 40, 0.12);
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin-bottom: 24px;
  border-radius: 6px;
  color: var(--accent);
  background: #e6f5f1;
  font-size: 13px;
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.showcase-section,
.analytics-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(560px, 1fr);
  gap: 42px;
  align-items: center;
}

.showcase-copy,
.analytics-copy {
  max-width: 500px;
}

.showcase-copy p,
.analytics-copy p,
.global-board p {
  color: var(--muted);
  line-height: 1.65;
}

.creative-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.creative-tile {
  position: relative;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 174px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 54px rgba(16, 24, 40, 0.09);
}

.creative-tile.tile-large {
  grid-column: span 2;
  grid-template-columns: 220px 1fr;
  min-height: 228px;
  background:
    linear-gradient(135deg, rgba(16, 24, 40, 0.98), rgba(31, 41, 55, 0.94)),
    #101828;
  color: #ffffff;
}

.creative-tile span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tile-large span {
  color: #fbbf24;
}

.creative-tile h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.15;
}

.tile-large h3 {
  max-width: 360px;
  font-size: 31px;
}

.creative-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.tile-large p {
  max-width: 390px;
  color: #cbd5e1;
}

.creative-tile b {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 9px;
  color: #ffffff;
  background: var(--violet);
}

.tile-visual {
  height: 136px;
  border-radius: 8px;
  background-color: #101828;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tile-large .tile-visual {
  height: 190px;
}

.visual-orange {
  background-image: url("./assets/creative-health.png");
}

.visual-green {
  background-image: url("./assets/creative-trainer.png");
}

.visual-blue {
  background-image: url("./assets/creative-basics.png");
}

.visual-rose {
  background-image: url("./assets/creative-system.png");
}

.speed-pills,
.section-proof-points,
.market-picker,
.chart-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.speed-pills {
  margin-top: 24px;
}

.speed-pills span,
.section-proof-points span,
.market-picker span,
.chart-tabs span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #475467;
  font-size: 13px;
  font-weight: 720;
}

.speed-pills span {
  padding: 9px 12px;
}

.section-proof-points {
  margin-top: 24px;
}

.section-proof-points span {
  padding: 9px 12px;
  color: var(--ink);
  background: #ffffff;
}

.timeline {
  padding: 10px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 7px;
}

.timeline-item + .timeline-item {
  border-top: 1px solid #edf2f7;
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 760;
}

.timeline-item p {
  margin-bottom: 0;
}

.insights-section {
  text-align: center;
}

.insights-section .section-heading {
  margin-right: auto;
  margin-left: auto;
}

.insight-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.insight-panels article {
  padding: 22px;
}

.insight-panels strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.analytics-showcase {
  grid-template-columns: minmax(0, 0.46fr) minmax(620px, 1fr);
}

.analytics-board {
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 26px 72px rgba(16, 24, 40, 0.12);
}

.analytics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.analytics-header span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.analytics-header strong {
  font-size: 24px;
}

.analytics-header button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: #344054;
  font-weight: 750;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.stat-grid div {
  min-height: 80px;
  padding: 14px;
  border: 1px solid #e5ebf3;
  border-radius: 8px;
  background: #f8fafc;
}

.stat-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.stat-grid strong {
  font-size: 22px;
}

.chart-card {
  padding: 12px;
  border: 1px solid #e5ebf3;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.chart-tabs {
  justify-content: flex-end;
  margin-bottom: 8px;
}

.chart-tabs span {
  padding: 7px 12px;
}

.chart-tabs .active {
  border-color: transparent;
  color: #ffffff;
  background: var(--amber);
}

.chart-tabs .green {
  border-color: transparent;
  color: #ffffff;
  background: #10b981;
}

.chart-card svg {
  display: block;
  width: 100%;
  min-height: 260px;
}

.analytics-board .grid-line {
  stroke: #e8eef5;
  stroke-width: 1.5;
}

.analytics-board .vertical {
  stroke-dasharray: 4 8;
}

.analytics-board .area {
  fill: url(#chartFill);
  stroke: none;
}

.analytics-board .orange-line {
  stroke: var(--amber);
  stroke-width: 7;
}

.analytics-board .green-line {
  stroke: #10b981;
  stroke-width: 7;
}

.analytics-board circle {
  fill: var(--amber);
  stroke: #ffffff;
  stroke-width: 4;
}

.chart-tip {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid #e5ebf3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
  color: #101828;
  font: 13px Inter, Arial, sans-serif;
}

.chart-tip span {
  color: var(--amber);
  font-weight: 750;
}

.chart-tip em {
  color: #10b981;
  font-style: normal;
  font-weight: 750;
}

.global-board,
.transcreate-story {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(16, 24, 40, 0.98), rgba(15, 118, 110, 0.88)),
    #101828;
  color: #ffffff;
  box-shadow: 0 28px 78px rgba(16, 24, 40, 0.2);
}

.global-board h2,
.transcreate-story h2 {
  max-width: 560px;
}

.global-board p,
.transcreate-story p {
  color: #d8e0eb;
}

.transcreate-story {
  position: relative;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(217, 226, 238, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 72% 18%, rgba(141, 242, 216, 0.22), transparent 20rem),
    radial-gradient(circle at 90% 74%, rgba(245, 158, 11, 0.14), transparent 22rem),
    linear-gradient(135deg, #101828, #111827 48%, #0f766e 160%);
}

.transcreate-copy {
  position: relative;
  z-index: 1;
}

.transcreate-copy .eyebrow {
  color: #8df2d8;
}

.transcreate-visual {
  position: relative;
  z-index: 1;
}

.transcreate-visual::before {
  position: absolute;
  inset: 8% 4% 0;
  content: "";
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(141, 242, 216, 0.32), rgba(139, 92, 246, 0.28));
  filter: blur(28px);
}

.transcreate-visual .showcase-image {
  position: relative;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.transcreate-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}

.transcreate-metrics div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.transcreate-metrics dt {
  margin-bottom: 5px;
  color: #cbd5e1;
  font-size: 12px;
}

.transcreate-metrics dd {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
}

.market-picker {
  margin-top: 24px;
}

.market-picker span {
  padding: 9px 12px;
  color: #d8e0eb;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.market-picker .active {
  color: #101828;
  background: #fbbf24;
  border-color: transparent;
}

.translation-canvas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.translation-card {
  min-height: 230px;
  padding: 22px;
  border-radius: 10px;
  background: #ffffff;
  color: #101828;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.translation-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.translation-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.08;
}

.translation-card p {
  color: var(--muted);
}

.translation-card.result {
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.translation-card b {
  padding: 8px 10px;
  color: #064e3b;
  background: #bbf7d0;
}

.translate-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.company-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 36px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 252, 0.92)),
    #ffffff;
}

.contact-block {
  padding: 22px;
  border: 1px solid #e8eef5;
  border-radius: var(--radius);
  background: #ffffff;
}

.contact-block p {
  margin-bottom: 8px;
}

.contact-block a {
  color: var(--accent-2);
  font-weight: 650;
}

.office-spacer {
  padding-top: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 10px 0 0;
  font-size: 14px;
}

.legal-page {
  max-width: 860px;
  padding: 78px 0 48px;
}

.legal-page h1 {
  margin-bottom: 12px;
}

.legal-page h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.16;
}

.legal-page section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-page p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-page a {
  color: var(--accent-2);
  font-weight: 650;
}

.legal-updated {
  margin-bottom: 34px;
  color: #475467;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--ink);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-card {
  0%,
  100% {
    transform: perspective(1000px) rotateX(2deg) rotateY(-3deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateX(1deg) rotateY(-2deg) translateY(-10px);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .split-layout,
  .showcase-section,
  .analytics-showcase,
  .global-board,
  .transcreate-story,
  .company-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-visual {
    transform: none;
  }

  .command-window {
    min-height: auto;
  }

  .showcase-copy,
  .analytics-copy {
    max-width: 760px;
  }

  .global-board,
  .transcreate-story {
    padding: 26px;
  }

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

  .translation-canvas {
    grid-template-columns: 1fr;
  }

  .translate-arrow {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 22px, 1180px);
  }

  .section-band,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    gap: 20px;
    padding-top: 34px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    margin: 20px 0 0;
  }

  .window-bar {
    padding: 8px;
  }

  .hero-visual {
    max-height: 214px;
  }

  .hero-brief {
    min-height: 150px;
  }

  .variant-stack,
  .hero-analytics,
  .hero-language {
    display: none;
  }

  .metric-strip,
  .feature-grid,
  .insight-panels,
  .creative-wall,
  .creative-wall-container,
  .variant-stack,
  .hero-dashboard,
  .hero-analytics,
  .stat-grid,
  .transcreate-metrics {
    grid-template-columns: 1fr;
  }

  .window-bar em {
    display: none;
  }

  .command-window {
    padding: 10px;
  }

  .variant-stack {
    grid-row: auto;
  }

  .mini-ad-card {
    min-height: 260px;
  }

  .creative-tile,
  .creative-tile.tile-large {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .tile-large h3 {
    font-size: 26px;
  }

  .tile-large .tile-visual,
  .tile-visual {
    height: 160px;
  }

  .metric-strip {
    display: none;
  }

  .platform-section,
  .showcase-section,
  .workflow-section,
  .analytics-showcase,
  .global-section,
  .insights-section,
  .company-section {
    padding: 56px 0;
  }

  .analytics-board,
  .global-board,
  .transcreate-story {
    padding: 16px;
  }

  .chart-tabs {
    justify-content: flex-start;
  }

  .chart-card svg {
    min-height: 210px;
  }

  .company-panel {
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

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

/* Showcase Image Styling */
.hero-showcase-image, .showcase-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: block;
  object-fit: cover;
}

.hero-visual .hero-showcase-image {
  max-width: 800px;
  margin: 0 auto;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.hero-visual .hero-showcase-image:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.creative-wall-container {
  position: relative;
  margin-top: 3rem;
  display: block;
  width: 100%;
}

.creative-wall-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 238, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 72% 20%, rgba(141, 242, 216, 0.28), transparent 17rem),
    #101828;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.18);
}

.creative-wall-image-wrap::before {
  position: absolute;
  inset: 14px;
  content: "";
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.24), rgba(139, 92, 246, 0.18));
  filter: blur(22px);
}

.creative-wall-image-wrap .showcase-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}

@media (max-width: 680px) {
  .transcreate-metrics {
    grid-template-columns: 1fr;
  }
}
