/*
Theme Name: 悟空AI旅游官网主题
Theme URI: https://example.com/gowukong-ai-tour
Author: OpenAI
Author URI: https://openai.com/
Description: 为「悟空AI旅游」定制的一页式 WordPress 官网主题，适合大模型旅游攻略生成、行程陪伴、路线规划、机票酒店推荐等 AI 旅行产品。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gowukong-ai-tour
Tags: one-page, landing-page, travel, ai, custom-logo, responsive-layout
*/

:root {
  --gwk-orange: #ff7a00;
  --gwk-orange-dark: #d85a00;
  --gwk-ink: #1f1f1f;
  --gwk-gold: #ffd700;
  --gwk-blue: #2a7fff;
  --gwk-cloud: #fff7ed;
  --gwk-soft: #fffaf3;
  --gwk-muted: #6b625a;
  --gwk-line: rgba(31, 31, 31, 0.1);
  --gwk-card: rgba(255, 255, 255, 0.84);
  --gwk-green: #22c55e;
  --gwk-red: #ff4d4f;
  --gwk-radius-lg: 32px;
  --gwk-radius-md: 22px;
  --gwk-radius-sm: 14px;
  --gwk-shadow: 0 24px 70px rgba(97, 49, 2, 0.14);
  --gwk-shadow-soft: 0 16px 40px rgba(97, 49, 2, 0.1);
  --gwk-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gwk-ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 215, 0, 0.2), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(42, 127, 255, 0.13), transparent 24%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 42%, #fff8ef 100%);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  color: #fff;
  background: var(--gwk-ink);
  border-radius: 999px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 122, 0, 0.1);
  background: rgba(255, 250, 243, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 40px rgba(31, 31, 31, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.custom-logo-link img {
  display: block;
  max-height: 54px;
  width: auto;
}

.site-brand-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-brand-fallback img {
  width: 178px;
  max-height: 60px;
  object-fit: contain;
}

.site-brand-text {
  display: none;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation a {
  position: relative;
  color: rgba(31, 31, 31, 0.78);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-navigation a:hover,
.primary-navigation a:focus {
  color: var(--gwk-orange);
}

.primary-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--gwk-orange);
  transition: width 0.22s ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  color: var(--gwk-ink);
  background: #fff;
  box-shadow: var(--gwk-shadow-soft);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: relative;
}

.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 5px; }

.menu-toggle.is-active span { transform: rotate(45deg); }
.menu-toggle.is-active span::before { transform: translateY(7px) rotate(90deg); }
.menu-toggle.is-active span::after { opacity: 0; }

.gwk-button,
.wp-block-button__link,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.gwk-button:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
}

.gwk-button-primary,
.wp-block-button__link,
input[type="submit"] {
  color: #fff;
  background: linear-gradient(135deg, var(--gwk-orange), #ff9c1a);
  box-shadow: 0 16px 34px rgba(255, 122, 0, 0.3);
}

.gwk-button-primary:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover {
  box-shadow: 0 22px 48px rgba(255, 122, 0, 0.38);
}

.gwk-button-secondary {
  color: var(--gwk-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 31, 31, 0.08);
  box-shadow: var(--gwk-shadow-soft);
}

.gwk-button-ghost {
  color: var(--gwk-orange);
  background: rgba(255, 122, 0, 0.08);
}

.gwk-main {
  overflow: hidden;
}

.gwk-section {
  padding: 96px 0;
}

.gwk-section-tight {
  padding: 74px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
  padding: 8px 13px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 999px;
  color: var(--gwk-orange-dark);
  background: rgba(255, 122, 0, 0.08);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section-heading h2,
.gwk-content h1,
.gwk-content h2,
.gwk-content h3 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.13;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 56px);
}

.section-heading p {
  margin: 0;
  color: var(--gwk-muted);
  font-size: 18px;
}

.hero-section {
  position: relative;
  padding: 78px 0 74px;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(8px);
}

.hero-section::before {
  top: 120px;
  left: -160px;
  width: 360px;
  height: 360px;
  background: rgba(255, 122, 0, 0.13);
}

.hero-section::after {
  right: -180px;
  bottom: 40px;
  width: 380px;
  height: 380px;
  background: rgba(42, 127, 255, 0.11);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid rgba(255, 122, 0, 0.16);
  border-radius: 999px;
  color: var(--gwk-orange-dark);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.1);
  font-size: 14px;
  font-weight: 900;
}

.hero-kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gwk-green);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.3;
  letter-spacing: -0.075em;
}

.hero-copy h1 strong {
  color: var(--gwk-orange);
  font-style: normal;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: #544b43;
  font-size: clamp(17px, 2.3vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}

.metric-card {
  padding: 16px 18px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--gwk-shadow-soft);
}

.metric-card strong {
  display: block;
  color: var(--gwk-orange);
  font-size: 26px;
  line-height: 1.1;
}

.metric-card span {
  display: block;
  margin-top: 4px;
  color: var(--gwk-muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  min-height: 850px;
}

.hero-orbit {
  position: absolute;
  inset: 20px 0 auto 0;
  min-height: 390px;
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,248,238,0.72)),
    radial-gradient(circle at 20% 10%, rgba(255, 215, 0, 0.3), transparent 34%);
  border: 1px solid rgba(255, 122, 0, 0.12);
  box-shadow: var(--gwk-shadow);
  overflow: hidden;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 8%;
  width: 68%;
  height: 68%;
  border: 4px dashed rgba(255, 122, 0, 0.18);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.hero-orbit::after {
  content: "";
  position: absolute;
  right: 12%;
  top: 16%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gwk-blue);
  box-shadow: -120px 170px 0 var(--gwk-orange), -70px 68px 0 var(--gwk-gold);
}

.hero-mascot {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 88px;
  width: min(380px, 82vw);
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 32px rgba(103, 61, 7, 0.16));
}

.hero-float {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 158px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--gwk-shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-float strong {
  color: var(--gwk-ink);
  font-size: 15px;
}

.hero-float span {
  color: var(--gwk-muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-float-1 { left: 6px; top: 76px; }
.hero-float-2 { right: -10px; top: 250px; }
.hero-float-3 { left: 38px; top: 330px; }

.trip-demo-card {
  position: absolute;
  left: 50%;
  top: 430px;
  bottom: 0;
  z-index: 4;
  width: min(95%, 450px);
  padding: 18px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--gwk-shadow);
  transform: translateX(-50%);
}

.trip-demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.trip-demo-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.trip-demo-title img {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.16);
}

.status-pill {
  padding: 7px 10px;
  border-radius: 999px;
  color: #0d7a38;
  background: rgba(34, 197, 94, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.trip-inputs {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 10px;
}

.trip-inputs input,
.trip-inputs select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: 16px;
  color: var(--gwk-ink);
  background: #fffaf3;
  outline: none;
}

.trip-inputs input:focus,
.trip-inputs select:focus {
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.trip-demo-card .gwk-button {
  width: 100%;
  margin-top: 10px;
}

.itinerary-preview {
  margin-top: 14px;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff7ed, #fff);
  border: 1px solid rgba(255, 122, 0, 0.12);
}

.itinerary-preview strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.itinerary-preview ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #5d5148;
  font-size: 13px;
  font-weight: 700;
}

.logo-strip {
  padding: 20px 0 54px;
}

.logo-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 999px;
  color: var(--gwk-muted);
  background: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(97, 49, 2, 0.07);
}

.logo-chip i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gwk-orange);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 236px;
  padding: 28px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--gwk-shadow-soft);
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.08);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--gwk-orange);
  background: rgba(255, 122, 0, 0.1);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin: 0;
  color: var(--gwk-muted);
}

.product-showcase {
  position: relative;
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 215, 0, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(31,31,31,0.96), rgba(45,37,30,0.93));
  color: #fff;
  overflow: hidden;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1.4px),
    linear-gradient(120deg, transparent 0%, rgba(255,122,0,0.12) 100%);
  background-size: 26px 26px, cover;
  opacity: 0.9;
}

.product-showcase-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 44px;
  align-items: center;
  padding: 56px;
}

.product-copy .eyebrow {
  margin: 0 0 18px;
  color: #fff;
  background: rgba(255, 122, 0, 0.18);
  border-color: rgba(255, 122, 0, 0.3);
}

.product-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.product-copy p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
}

.product-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-weight: 800;
}

.product-points li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--gwk-ink);
  background: var(--gwk-gold);
  font-size: 14px;
  font-weight: 1000;
}

.phone-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.phone-mock {
  min-height: 560px;
  border: 12px solid #191919;
  border-radius: 42px;
  background: #fffaf3;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  overflow: hidden;
}

.phone-mock:nth-child(2) {
  margin-top: 54px;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: var(--gwk-ink);
  background: #fff;
  border-bottom: 1px solid rgba(31,31,31,0.08);
  font-weight: 900;
}

.phone-dot {
  width: 38px;
  height: 5px;
  border-radius: 999px;
  background: rgba(31,31,31,0.18);
}

.phone-content {
  padding: 18px;
}

.mini-hero {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  color: var(--gwk-ink);
  background:
    radial-gradient(circle at 86% 12%, rgba(42, 127, 255, 0.2), transparent 24%),
    linear-gradient(135deg, #fff, #fff0dc);
}

.mini-hero img {
  width: 92px;
  margin-left: auto;
}

.mini-hero strong {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mini-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px;
  border-radius: 18px;
  color: var(--gwk-ink);
  background: #fff;
  box-shadow: 0 10px 22px rgba(97, 49, 2, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.mini-item span {
  color: var(--gwk-orange);
}

.chat-bubble {
  max-width: 86%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--gwk-ink);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.chat-bubble.ai {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, var(--gwk-orange), #ff9c1a);
}

.route-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  color: var(--gwk-ink);
  background: #fff;
}

.route-line {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 10px 0;
}

.route-pin {
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--gwk-orange);
  box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.25);
}

.persona-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.persona-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 460px;
  padding: 32px;
  border: 1px solid rgba(31,31,31,0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255,215,0,0.24), transparent 32%),
    rgba(255,255,255,0.78);
  box-shadow: var(--gwk-shadow-soft);
  overflow: hidden;
}

.persona-card img {
  position: absolute;
  top: 28px;
  left: 50%;
  width: min(84%, 340px);
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 24px rgba(97, 49, 2, 0.12));
}

.persona-card h2 {
  position: relative;
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.persona-card p {
  position: relative;
  margin: 0;
  color: var(--gwk-muted);
  font-weight: 700;
}

.persona-traits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trait-card {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(31,31,31,0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(97,49,2,0.08);
}

.trait-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: rgba(255, 122, 0, 0.1);
  font-size: 22px;
}

.trait-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.trait-card p {
  margin: 0;
  color: var(--gwk-muted);
  font-size: 14px;
}

.steps-section {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,247,237,0.84) 48%, rgba(255,255,255,0));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step-card {
  position: relative;
  min-height: 240px;
  padding: 26px;
  border: 1px solid rgba(31,31,31,0.08);
  border-radius: 30px;
  background: rgba(255,255,255,0.8);
  box-shadow: var(--gwk-shadow-soft);
  counter-increment: step;
}

.step-card::before {
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #fff;
  background: var(--gwk-ink);
  font-weight: 1000;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.step-card p {
  margin: 0;
  color: var(--gwk-muted);
}

.scenarios-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.scenario-panel {
  min-height: 420px;
  padding: 34px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.88), rgba(255, 159, 28, 0.9)),
    url("assets/img/wukong-mascot.png");
  color: #fff;
  box-shadow: var(--gwk-shadow);
  overflow: hidden;
}

.scenario-panel h2 {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.scenario-panel p {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
}

.scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scenario-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-weight: 900;
}

.scenario-list {
  display: grid;
  gap: 14px;
}

.scenario-card {
  padding: 22px;
  border: 1px solid rgba(31,31,31,0.08);
  border-radius: 26px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 14px 34px rgba(97,49,2,0.08);
}

.scenario-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.scenario-card p {
  margin: 0;
  color: var(--gwk-muted);
  font-size: 14px;
}

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

.icon-card {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 154px;
  padding: 22px 14px;
  border: 1px solid rgba(31,31,31,0.08);
  border-radius: 26px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 30px rgba(97,49,2,0.07);
  text-align: center;
  font-weight: 900;
}

.icon-card svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--gwk-ink);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 110px;
}

.faq-copy h2 {
  margin: 14px 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.faq-copy p {
  margin: 0;
  color: var(--gwk-muted);
  font-size: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(31,31,31,0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 30px rgba(97,49,2,0.07);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 70px;
  padding: 20px 22px;
  border: 0;
  color: var(--gwk-ink);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--gwk-orange);
  background: rgba(255, 122, 0, 0.09);
  text-align: center;
  line-height: 28px;
  flex: 0 0 auto;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--gwk-muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-band {
  position: relative;
  padding: 58px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 215, 0, 0.25), transparent 26%),
    linear-gradient(135deg, #fff, #fff0da);
  box-shadow: var(--gwk-shadow);
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.12);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
}

.cta-content h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.cta-content p {
  max-width: 650px;
  margin: 0;
  color: var(--gwk-muted);
  font-size: 18px;
}

.site-footer {
  padding: 42px 0 30px;
  border-top: 1px solid rgba(31,31,31,0.08);
  background: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(140px, 0.55fr));
  gap: 30px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 1000;
}

.footer-logo img {
  width: 172px;
}

.footer-about p,
.footer-col a,
.footer-bottom {
  color: var(--gwk-muted);
}

.footer-about p {
  max-width: 380px;
  margin: 0;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.footer-col ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a:hover {
  color: var(--gwk-orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(31,31,31,0.08);
  font-size: 14px;
}

.gwk-content-wrap {
  width: min(calc(100% - 40px), 880px);
  margin: 56px auto 92px;
  padding: 44px;
  border: 1px solid rgba(31,31,31,0.08);
  border-radius: 32px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--gwk-shadow-soft);
}

.gwk-content h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 56px);
}

.gwk-content p,
.gwk-content li {
  color: #514940;
}

.gwk-post-list {
  display: grid;
  gap: 18px;
}

.gwk-post-card {
  padding: 24px;
  border: 1px solid rgba(31,31,31,0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
}

.gwk-post-card h2 {
  margin: 0 0 8px;
}

.gwk-post-meta {
  margin: 0 0 12px;
  color: var(--gwk-orange-dark);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .primary-navigation ul {
    gap: 18px;
  }

  .hero-grid,
  .product-showcase-inner,
  .persona-grid,
  .faq-grid,
  .scenarios-grid,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 570px;
  }

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

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

  .faq-copy {
    position: static;
  }

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

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-navigation {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    padding: 18px;
    border: 1px solid rgba(31,31,31,0.08);
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--gwk-shadow);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation ul {
    display: grid;
    gap: 8px;
  }

  .primary-navigation a {
    display: block;
    padding: 10px 12px;
  }

  .primary-navigation a::after {
    display: none;
  }

  .header-actions .gwk-button {
    display: none;
  }

  .hero-section {
    padding-top: 48px;
  }

  .hero-grid {
    gap: 34px;
  }

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

  .hero-stage {
    min-height: 610px;
  }

  .hero-orbit {
    min-height: 380px;
  }

  .hero-mascot {
    top: 94px;
    width: min(330px, 80vw);
  }

  .hero-float {
    min-width: 136px;
  }

  .hero-float-1 { left: 0; top: 44px; }
  .hero-float-2 { right: 0; top: 270px; }
  .hero-float-3 { left: 0; top: 358px; }

  .trip-demo-card {
    width: 100%;
  }

  .phone-stack {
    grid-template-columns: 1fr;
  }

  .phone-mock:nth-child(2) {
    margin-top: 0;
  }

  .product-showcase-inner,
  .cta-band {
    padding: 30px;
  }

  .persona-traits,
  .features-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .gwk-container {
    width: min(calc(100% - 28px), var(--gwk-max));
  }

  .site-brand-fallback img,
  .footer-logo img {
    width: 148px;
  }

  .gwk-section,
  .gwk-section-tight {
    padding: 66px 0;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-kicker {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-actions .gwk-button {
    width: 100%;
  }

  .trip-inputs {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 640px;
  }

  .feature-card,
  .step-card,
  .persona-card,
  .trait-card,
  .scenario-panel,
  .scenario-card {
    border-radius: 24px;
    padding: 22px;
  }

  .persona-card {
    min-height: 420px;
  }

  .phone-mock {
    min-height: auto;
  }

  .icon-grid {
    grid-template-columns: 1fr;
  }

  .cta-content .gwk-button {
    width: 100%;
  }

  .gwk-content-wrap {
    width: min(calc(100% - 28px), 880px);
    padding: 26px;
  }
}
