/* ============================================================
   SYNCROWOOT — LANDING PAGE STYLES
   Design: Black/White/Lime-green, thick borders, rounded corners
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --black: #000000;
  --near-black: #050505;
  --white: #FFFFFF;
  --light-bg: #F6F6F6;
  --border-light: #EDEDED;
  --lime: #A8FF3E;
  --lime-dark: #8CE02E;
  --gray-secondary: #4A4A4A;
  --gray-muted: #B8B8B8;
  --gray-light: #D0D0D0;

  --border-w: 3px;
  --radius-card: 20px;
  --radius-header: 24px;
  --radius-btn: 14px;
  --radius-sm: 10px;

  --shadow: 8px 8px 0px var(--black);
  --shadow-sm: 4px 4px 0px var(--black);
  --shadow-hover: 12px 12px 0px var(--black);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --header-h: 80px;
  --container-w: 1120px;
  --section-py: 100px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--near-black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border: var(--border-w) solid var(--black);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: none;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

.btn-md {
  padding: 14px 28px;
  font-size: 0.9375rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-green {
  background: var(--lime);
  color: var(--black);
}

.btn-green:hover {
  background: var(--lime-dark);
}

.btn-outline {
  background: transparent;
  color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-icon {
  flex-shrink: 0;
}

/* ---------- SECTION COMMON ---------- */
.section {
  padding: var(--section-py) 0;
}

.section-alt {
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-secondary);
  line-height: 1.6;
}

.highlight {
  display: inline-block;
  background: var(--lime);
  padding: 0 12px;
  border-radius: var(--radius-sm);
  line-height: 1.2;
}

/* ---------- FADE-IN ANIMATION ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1080px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border: var(--border-w) solid var(--black);
  border-radius: var(--radius-header);
  padding: 0 24px;
  height: 72px;
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.3s ease;
}

.header.scrolled .header-inner {
  box-shadow: var(--shadow-sm);
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--black);
  background: var(--light-bg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Badge pill */
.badge,
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-badge {
  display: inline-flex;
  margin: 0 auto 28px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-secondary);
}

.bullet-dot {
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--black);
}

/* Hero visual card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  background: var(--lime);
  border: var(--border-w) solid var(--black);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 16px;
}

/* Dashboard mockup inside hero card */
.mockup-dashboard {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  border: 2px solid var(--black);
}

.mockup-sidebar {
  width: 50px;
  background: var(--near-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 10px;
  flex-shrink: 0;
}

.mockup-logo-small {
  width: 28px;
  height: 28px;
  background: var(--lime);
  color: var(--black);
  font-weight: 900;
  font-size: 0.75rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.mockup-sidebar-item {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
}

.mockup-sidebar-item.active {
  background: var(--lime);
}

.mockup-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 2px solid var(--border-light);
}

.mockup-search {
  width: 140px;
  height: 10px;
  background: var(--light-bg);
  border-radius: 20px;
}

.mockup-avatar {
  width: 24px;
  height: 24px;
  background: var(--near-black);
  border-radius: 50%;
}

.mockup-content {
  flex: 1;
  display: flex;
}

.mockup-chats {
  width: 160px;
  border-right: 2px solid var(--border-light);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-chat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
}

.mockup-chat.active {
  background: var(--light-bg);
}

.mockup-avatar-sm {
  width: 22px;
  height: 22px;
  background: var(--gray-muted);
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-chat.active .mockup-avatar-sm {
  background: var(--near-black);
}

.mockup-chat-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mockup-chat-name {
  width: 60px;
  height: 5px;
  background: var(--gray-muted);
  border-radius: 4px;
}

.mockup-chat.active .mockup-chat-name {
  background: var(--near-black);
}

.mockup-chat-msg {
  width: 40px;
  height: 4px;
  background: var(--border-light);
  border-radius: 4px;
}

.mockup-badge-green,
.mockup-badge-gray {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
}

.mockup-badge-green {
  background: var(--lime);
  color: var(--black);
}

.mockup-badge-gray {
  background: var(--border-light);
  color: var(--gray-muted);
}

.mockup-panel {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-panel-header {
  width: 90px;
  height: 8px;
  background: var(--near-black);
  border-radius: 4px;
}

.mockup-panel-tags {
  display: flex;
  gap: 6px;
}

.mockup-tag {
  width: 40px;
  height: 16px;
  background: var(--border-light);
  border-radius: 4px;
}

.mockup-panel-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.mockup-info-row {
  width: 100%;
  height: 6px;
  background: var(--light-bg);
  border-radius: 4px;
}

/* ============================================================
   TILTED BANNER
   ============================================================ */
.tilted-banner {
  background: var(--black);
  padding: 22px 0;
  transform: rotate(-2.5deg) scale(1.05);
  margin: 20px 0;
  overflow: hidden;
  position: relative;
  width: 110%;
  left: -5%;
}

.tilted-banner-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}

.tilted-banner-track .dot {
  color: var(--lime);
  font-weight: 900;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   COMO FUNCIONA (Steps)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--white);
  border: var(--border-w) solid var(--black);
  border-radius: var(--radius-card);
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s ease;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.step-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--lime);
  border: 2px solid var(--black);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--gray-secondary);
  line-height: 1.6;
}

/* ============================================================
   RECURSOS (Features)
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  background: var(--white);
  border: var(--border-w) solid var(--black);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: all 0.3s ease;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.resource-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow);
}

.resource-card-wide {
  grid-column: span 2;
}

.resource-card-green {
  background: var(--lime);
}

.resource-visual {
  height: 100px;
  background: var(--light-bg);
  border: 2px solid var(--border-light);
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}

.resource-card-green .resource-visual {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.15);
}

.resource-title {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.beta-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--black);
  color: var(--lime);
  padding: 2px 8px;
  border-radius: 6px;
  line-height: 1.3;
  vertical-align: middle;
}

.resource-desc {
  font-size: 0.875rem;
  color: var(--gray-secondary);
  line-height: 1.6;
}

/* Mini mockups inside resource cards */
.mini-mockup-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-secondary);
  padding: 4px 8px;
  background: var(--white);
  border-radius: 6px;
  border: 1.5px solid var(--border-light);
}

.mini-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mini-dot.green { background: var(--lime); border: 1px solid var(--black); }
.mini-dot.gray { background: var(--gray-muted); }

/* Timeline mini */
.mini-timeline {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 8px;
}

.mini-tl-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}

.mini-tl-dot {
  width: 8px;
  height: 8px;
  background: var(--near-black);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.mini-tl-line {
  position: absolute;
  left: 3.5px;
  top: 12px;
  width: 2px;
  height: 18px;
  background: var(--gray-light);
}

.mini-tl-text {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-secondary);
  padding-bottom: 4px;
}

/* Tags mini */
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.mini-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1.5px solid var(--black);
}

.mini-tag.tag-green { background: var(--lime); color: var(--black); }
.mini-tag.tag-black { background: var(--near-black); color: var(--white); }

/* Flow mini */
.mini-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.mini-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-secondary);
}

.mini-flow-icon {
  font-size: 1.25rem;
}

.mini-flow-arrow {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--lime);
}

/* Dashboard mini */
.mini-dashboard {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-dash-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-dash-label {
  width: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--near-black);
  text-align: right;
}

.mini-dash-bar {
  flex: 1;
  height: 8px;
  background: rgba(0,0,0,0.1);
  border-radius: 20px;
  overflow: hidden;
}

.mini-dash-fill {
  display: block;
  height: 100%;
  background: var(--near-black);
  border-radius: 20px;
}

.mini-dash-val {
  width: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--near-black);
}

/* AI mini */
.mini-ai {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-ai-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--near-black);
}

/* ============================================================
   COMPARAÇÃO
   ============================================================ */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.comparison-card {
  border: var(--border-w) solid var(--black);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  transition: all 0.3s ease;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.comparison-card-left {
  background: var(--white);
}

.comparison-card-right {
  background: var(--lime);
  box-shadow: var(--shadow);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.comparison-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--black);
}

.comparison-icon-x {
  background: #FFE0E0;
  color: #CC3333;
}

.comparison-icon-check {
  background: var(--black);
  color: var(--lime);
}

.comparison-title {
  font-size: 1.35rem;
  font-weight: 800;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-secondary);
}

.comparison-card-right .comparison-item {
  color: var(--near-black);
}

.comparison-item-highlight {
  color: var(--near-black) !important;
}

.comparison-x {
  color: #CC3333;
  font-weight: 700;
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.comparison-check {
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* ============================================================
   PLANOS
   ============================================================ */
.pricing-badge {
  display: inline-flex;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border: var(--border-w) solid var(--black);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.plan-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow);
}

.plan-card-featured {
  border-color: var(--lime);
  box-shadow: var(--shadow);
}

.plan-card-featured:hover {
  box-shadow: var(--shadow-hover);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  border: 2px solid var(--black);
  white-space: nowrap;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.plan-desc {
  font-size: 0.875rem;
  color: var(--gray-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.plan-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.plan-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-secondary);
}

.plan-check {
  color: var(--lime);
  font-weight: 800;
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.plan-cta {
  width: 100%;
  margin-top: auto;
}

.impl-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--black);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.impl-tag .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

.plan-pillar {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-muted);
  margin-bottom: 4px;
}

.plans-cta-single {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.plans-cta-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray-secondary);
  max-width: 500px;
  line-height: 1.5;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: var(--black);
  padding: 100px 0;
}

.cta-final .container {
  display: flex;
  justify-content: center;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  border: var(--border-w) solid var(--black);
  border-radius: var(--radius-card);
  padding: 40px 44px;
  width: 100%;
  max-width: 920px;
  box-shadow: var(--shadow);
}

.cta-symbol {
  width: 80px;
  height: 80px;
  background: var(--near-black);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--black);
}

.cta-text {
  flex: 1;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.cta-desc {
  font-size: 0.9375rem;
  color: var(--gray-secondary);
  line-height: 1.5;
}

.cta-button {
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--near-black);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--gray-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 24px;
  font-size: 0.8125rem;
  color: var(--gray-muted);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-card {
    max-width: 440px;
  }

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

  .resource-card-wide {
    grid-column: span 1;
  }

  .plans-grid {
    gap: 20px;
  }

  .plan-card {
    padding: 28px 20px;
  }
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .cta-symbol {
    display: none;
  }

  .tilted-banner {
    transform: rotate(-1.5deg) scale(1.05);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 70px;
  }

  .header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .header-inner {
    height: 62px;
    padding: 0 16px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    border-left: var(--border-w) solid var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.35s ease;
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.125rem;
    padding: 12px 0;
    width: 100%;
    border-radius: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-bullets {
    align-items: center;
  }

  .hero-visual {
    grid-row: 1;
  }

  .hero-card {
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-card {
    aspect-ratio: 4 / 3;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.25rem);
  }

  .resources-grid {
    max-width: 540px;
    margin: 0 auto;
  }

  .mockup-chats {
    width: 120px;
  }

  .comparison-card {
    padding: 28px 20px;
  }

  .cta-card {
    padding: 32px 20px;
  }

  .cta-title {
    font-size: 1.25rem;
  }

  .cta-desc {
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    gap: 16px;
  }

  .tilted-banner-track {
    font-size: 0.75rem;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-w: 100%;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  .plans-grid,
  .steps-grid,
  .comparison-grid {
    gap: 12px;
  }

  .resources-grid {
    gap: 14px;
  }

  .plan-card {
    padding: 20px 16px;
  }

  .plan-pillar {
    font-size: 0.6rem;
  }

  .plan-name {
    font-size: 1.125rem;
  }

  .plan-desc {
    font-size: 0.75rem;
    margin-bottom: 16px;
  }

  .plan-items {
    gap: 6px;
    margin-bottom: 0;
  }

  .plan-item {
    font-size: 0.6875rem;
    gap: 6px;
    hyphens: auto;
    line-height: 1.3;
  }

  .plan-check {
    font-size: 0.75rem;
    width: 14px;
    flex-shrink: 0;
  }

  .plan-desc {
    line-height: 1.35;
    hyphens: auto;
  }

  .step-card {
    padding: 20px 16px;
  }

  .step-number {
    font-size: 2.5rem;
    top: 10px;
    right: 12px;
  }

  .step-title {
    font-size: 0.9375rem;
  }

  .step-desc {
    font-size: 0.75rem;
    hyphens: auto;
  }

  .section-subtitle {
    font-size: 0.875rem;
    hyphens: auto;
  }

  .resource-card {
    padding: 16px;
  }

  .resource-visual {
    height: 70px;
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 10px;
  }

  .resource-title {
    font-size: 0.875rem;
  }

  .beta-badge {
    font-size: 0.5rem;
    padding: 1px 6px;
  }

  .comparison-card {
    padding: 16px;
  }

  .comparison-card h3 {
    font-size: 0.875rem;
  }

  .comparison-item {
    font-size: 0.75rem;
    gap: 6px;
    hyphens: auto;
  }

  .comparison-header {
    gap: 10px;
    margin-bottom: 16px;
  }

  .comparison-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .comparison-icon svg {
    width: 18px;
    height: 18px;
  }

  .comparison-list {
    gap: 8px;
  }

  .comparison-check,
  .comparison-x {
    font-size: 0.75rem;
    width: 16px;
    flex-shrink: 0;
  }

  .resource-desc {
    font-size: 0.75rem;
    hyphens: auto;
  }

  .hero-card {
    aspect-ratio: 4 / 3;
    padding: 10px;
  }

  .mockup-sidebar {
    width: 36px;
  }

  .mockup-chats {
    width: 90px;
    padding: 4px;
  }

  .mockup-chat {
    padding: 4px;
  }

  .mockup-badge-green,
  .mockup-badge-gray {
    display: none;
  }

  .mockup-panel {
    padding: 8px;
  }

  .badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .impl-tag {
    font-size: 0.65rem;
    padding: 4px 12px;
  }

  .plans-cta-single {
    margin-top: 32px;
    gap: 14px;
  }

  .plans-cta-text {
    font-size: 0.875rem;
  }

  .cta-card {
    padding: 24px 16px;
  }
}
