:root {
  --orange: #B35000;
  --orange-light: #D4600A;
  --charcoal: #111111;
  --slate: #1B2A3B;
  --warm-gray: #F5F3F0;
  --off-white: #FAF9F7;
  --white: #FFFFFF;
  --border: #E2DDD8;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #696969;
  --canva-purple: #7D2AE8;
  --canva-teal: #00C4CC;
  --canva-pink: #FF6B9E;
  --canva-blue: #2D6AE0;
  --canva-grad-start: #7D2AE8;
  --canva-grad-end: #00C4CC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text-primary); background: var(--white); overflow-x: hidden; }

/* ── SYSTEM BAR ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0530 0%, #111111 50%, #220a3a 100%);
  color: #fff;
  padding: 4.5rem 3rem 4rem;
}
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
@media (max-width: 780px) { .hero-inner { grid-template-columns: 1fr; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(125,42,232,0.2); border: 1px solid rgba(125,42,232,0.4);
  color: #d4b3ff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em;
  padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }
.hero-title { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; line-height: 1.1; margin-bottom: 0.75rem; }
.hero-title .canva-accent {
  background: linear-gradient(90deg, #d4b3ff 0%, #7ecfff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 530px; line-height: 1.65; margin-bottom: 1.75rem; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: #fff;
  padding: 0.7rem 1.5rem; border-radius: 6px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-light); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.7rem 1.5rem; border-radius: 6px;
  text-decoration: none; font-weight: 500; font-size: 0.9rem;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* Hero tier cards */
.hero-tiers { display: flex; flex-direction: column; gap: 1rem; min-width: 220px; }
.tier-card {
  border-radius: 10px; padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}
.tier-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.35rem; }
.tier-name { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.tier-desc { font-size: 0.72rem; color: rgba(255,255,255,0.55); line-height: 1.4; }
.tier-card.free .tier-label { color: #86efac; }
.tier-card.paid .tier-label { color: #d4b3ff; }
.tier-price {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  padding: 0.18rem 0.6rem; border-radius: 4px; margin-top: 0.5rem;
}
.price-free { background: rgba(134,239,172,0.15); color: #86efac; }
.price-paid { background: rgba(212,179,255,0.15); color: #d4b3ff; }

/* ── QUICK LAUNCH ── */
section.quick-launch {
  background: var(--charcoal);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ql-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.ql-label { color: rgba(255,255,255,0.62); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; margin-right: 0.5rem; white-space: nowrap; }
.ql-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.38rem 0.85rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px; text-decoration: none;
  color: rgba(255,255,255,0.82); font-size: 0.78rem; font-weight: 500;
  transition: all 0.15s;
}
.ql-link:hover { background: rgba(255,255,255,0.13); color: #fff; border-color: rgba(255,255,255,0.25); }
.ql-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* ── SHARED LAYOUT ── */
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--charcoal); margin-bottom: 0.65rem; }
.section-sub { font-size: 0.95rem; color: var(--text-secondary); max-width: 660px; line-height: 1.65; margin-bottom: 2.5rem; }

/* ── UT BRAND KIT CALLOUT ── */
section.brandkit-section {
  background: var(--white);
  padding: 4.5rem 2rem;
}
.brandkit-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 720px) { .brandkit-inner { grid-template-columns: 1fr; } }
.brandkit-content .section-sub { margin-bottom: 1.75rem; }
.brandkit-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.brandkit-features li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.85rem; color: var(--text-primary); line-height: 1.45;
}
.bk-check { color: var(--canva-purple); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; font-size: 1rem; }
.bk-label { font-weight: 600; }
.bk-sub { color: var(--text-secondary); font-weight: 400; }
.btn-canva {
  display: inline-block;
  background: var(--canva-purple); color: #fff;
  padding: 0.7rem 1.5rem; border-radius: 6px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: opacity 0.2s;
}
.btn-canva:hover { opacity: 0.87; }

/* Brand Kit visual preview */
.brandkit-preview {
  background: linear-gradient(135deg, #1B2A3B 0%, #2a3f58 100%);
  border-radius: 14px; padding: 2rem;
  position: relative; overflow: hidden;
}
.brandkit-preview::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(125,42,232,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.bk-preview-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45); margin-bottom: 1.25rem;
}
.bk-swatch-row { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; }
.bk-swatch {
  width: 36px; height: 36px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 700; color: rgba(255,255,255,0.7);
}
.bk-font-row { margin-bottom: 1.25rem; }
.bk-font-sample { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 0.15rem; }
.bk-font-name { font-size: 0.68rem; color: rgba(255,255,255,0.45); }
.bk-logo-row { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.bk-logo-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 0.4rem 0.75rem;
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.8);
}
.bk-logo-dot {
  width: 14px; height: 14px; border-radius: 3px;
  background: var(--orange);
}
.bk-preview-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 0.2rem 0.6rem; border-radius: 4px;
  background: rgba(125,42,232,0.3); color: #d4b3ff;
  margin-top: 1.25rem;
}

/* ── TIERS ── */
section.tiers-section {
  background: var(--warm-gray);
  padding: 4.5rem 2rem;
}
.tiers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 720px) { .tiers-grid { grid-template-columns: 1fr; } }
.tier-full-card {
  background: var(--white); border-radius: 12px;
  border: 2px solid var(--border); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s;
}
.tier-full-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.tier-full-card.featured { border-color: var(--canva-purple); }
.tier-full-header {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.tier-full-card.featured .tier-full-header {
  background: linear-gradient(135deg, rgba(125,42,232,0.07) 0%, rgba(0,196,204,0.04) 100%);
}
.access-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.2rem 0.65rem; border-radius: 4px;
  margin-bottom: 0.8rem;
}
.badge-free { background: #dcfce7; color: #15803d; }
.badge-purchase { background: #f3e8ff; color: #7e22ce; }
.tier-full-title { font-size: 1.15rem; font-weight: 800; color: var(--charcoal); margin-bottom: 0.3rem; }
.tier-full-sub { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; }
.tier-full-body { padding: 1.5rem 1.75rem; flex: 1; }
.tier-full-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.tier-full-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.83rem; color: var(--text-primary); line-height: 1.45;
}
.tf-check { font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.check-green { color: #16a34a; }
.check-purple { color: var(--canva-purple); }
.tier-full-footer { padding: 1rem 1.75rem 1.5rem; border-top: 1px solid var(--border); }
.btn-canva-primary {
  display: inline-block; background: var(--canva-purple); color: #fff;
  padding: 0.6rem 1.25rem; border-radius: 6px;
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  transition: opacity 0.2s;
}
.btn-canva-primary:hover { opacity: 0.87; }
.btn-canva-secondary {
  display: inline-block;
  background: transparent; color: var(--orange);
  border: 1px solid var(--orange);
  padding: 0.6rem 1.25rem; border-radius: 6px;
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s;
}
.btn-canva-secondary:hover { background: var(--orange); color: #fff; }
.tier-note {
  background: rgba(125,42,232,0.06); border-left: 3px solid var(--canva-purple);
  border-radius: 0 6px 6px 0; padding: 0.75rem 1rem;
  margin-top: 1.25rem; font-size: 0.78rem; color: var(--text-secondary); line-height: 1.55;
}
.tier-note a { color: var(--canva-purple); text-decoration: none; }
.tier-note a:hover { text-decoration: underline; }

/* ── USE CASE TEMPLATES ── */
section.usecases-section {
  background: var(--white);
  padding: 4.5rem 2rem;
}
.usecases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.25rem; }
.usecase-card {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 1.5rem; background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.usecase-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.usecase-icon {
  width: 42px; height: 42px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 0.85rem;
}
.usecase-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.35rem; }
.usecase-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.55; }
.usecase-tag {
  display: inline-block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 0.15rem 0.45rem; border-radius: 3px;
  margin-top: 0.6rem;
}
.tag-all { background: #dcfce7; color: #15803d; }
.tag-pro { background: #f3e8ff; color: #7e22ce; }

/* ── GETTING STARTED ── */
section.getting-started {
  background: var(--slate);
  padding: 4.5rem 2rem;
  color: #fff;
}
.gs-header .section-label { color: #d4b3ff; }
.gs-header .section-title { color: #fff; }
.gs-header .section-sub { color: rgba(255,255,255,0.7); margin-bottom: 0; }
.gs-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.gs-step {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 1.75rem;
}
.gs-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 800; margin-bottom: 1rem;
}
.gs-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.gs-step p { font-size: 0.82rem; color: rgba(255,255,255,0.68); line-height: 1.6; }
.gs-step a { color: #d4b3ff; text-decoration: none; }
.gs-step a:hover { text-decoration: underline; }
.gs-tip {
  margin-top: 2rem; background: rgba(125,42,232,0.15); border: 1px solid rgba(125,42,232,0.3);
  border-radius: 8px; padding: 1.1rem 1.5rem;
  font-size: 0.83rem; color: rgba(255,255,255,0.82); line-height: 1.6;
}
.gs-tip strong { color: #d4b3ff; }
.gs-tip a { color: #d4b3ff; text-decoration: none; }
.gs-tip a:hover { text-decoration: underline; }

/* ── TIPS ── */
section.tips-section {
  background: var(--off-white);
  padding: 4.5rem 2rem;
}
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.25rem; }
.tip-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.5rem; transition: box-shadow 0.2s;
}
.tip-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.tip-eyebrow {
  display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 0.18rem 0.55rem; border-radius: 3px;
  margin-bottom: 0.75rem;
}
.te-pro { background: #f3e8ff; color: #7e22ce; }
.te-brand { background: #fff0e8; color: var(--orange); }
.te-all { background: #dcfce7; color: #15803d; }
.tip-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem; }
.tip-card p { font-size: 0.81rem; color: var(--text-secondary); line-height: 1.55; }

/* ── SUPPORT ── */
section.support-section {
  background: var(--white);
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
}
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.support-card {
  text-align: center; padding: 2rem 1.5rem;
  border: 1px solid var(--border); border-radius: 10px;
  transition: box-shadow 0.2s;
}
.support-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.support-icon { font-size: 2rem; margin-bottom: 1rem; }
.support-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.support-card p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 1.25rem; }
.support-link {
  display: inline-block; font-size: 0.84rem; font-weight: 600;
  color: var(--orange); text-decoration: none;
  border: 1px solid var(--orange); border-radius: 6px;
  padding: 0.5rem 1.1rem; transition: all 0.2s;
}
.support-link:hover { background: var(--orange); color: #fff; }

/* ── FOOTER ── */
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 0.81rem; text-decoration: none; margin-bottom: 0.4rem; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
