/* ============================================
   PromptUp – Global Stylesheet
   Brand: Gotcha
   ============================================ */

:root {
  --orange:        #FF6B35;
  --orange-light:  #FFF0EB;
  --orange-mid:    #FFD4C2;
  --near-black:    #111111;
  --body-grey:     #6B7280;
  --surface-light: #F4F4F5;
  --border-grey:   #E5E7EB;
  --white:         #FFFFFF;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(255,107,53,0.16);
  --max-w: 1120px;
  --transition: 0.2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--near-black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============ UTILITY ============ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--alt { background: var(--surface-light); }
.section--orange { background: var(--orange-light); }

.tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--body-grey);
  max-width: 600px;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: #e55a27;
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange-light);
}
.btn-lg { padding: 18px 36px; font-size: 18px; border-radius: var(--radius); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-grey);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--near-black);
}
.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body-grey);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--near-black); }
.nav__cta { display: flex; gap: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  padding: 112px 0 80px;
  background: linear-gradient(160deg, var(--white) 60%, var(--orange-light) 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-mid) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero__badge {
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero__new { color: var(--body-grey); font-size: 14px; }
.hero__title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}
.hero__sub {
  font-size: 19px;
  color: var(--body-grey);
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--body-grey);
}
.hero__trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-mid);
}

/* Hero visual */
.hero__visual {
  position: relative;
}
.hero__mockup {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}
.mockup__bar {
  background: var(--surface-light);
  border-bottom: 1px solid var(--border-grey);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup__dot--red   { background: #FF5F57; }
.mockup__dot--yellow{ background: #FFBD2E; }
.mockup__dot--green { background: #28C941; }
.mockup__content { padding: 20px; }
.mockup__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--body-grey);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.mockup__prompt {
  background: var(--surface-light);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 14px;
  color: var(--near-black);
  line-height: 1.55;
  position: relative;
  min-height: 80px;
}
.mockup__sparkle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--orange);
  color: var(--white);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(255,107,53,0.4);
  cursor: pointer;
}
.mockup__arrow {
  text-align: center;
  padding: 12px;
  font-size: 20px;
  color: var(--orange);
}
.mockup__enhanced {
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 14px;
  color: var(--near-black);
  line-height: 1.55;
}

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.step {
  text-align: center;
  padding: 32px 24px;
}
.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step__icon { font-size: 32px; margin-bottom: 16px; }
.step__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step__desc { font-size: 15px; color: var(--body-grey); line-height: 1.6; }

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card__desc {
  font-size: 15px;
  color: var(--body-grey);
  line-height: 1.6;
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 64px auto 0;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border-grey);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.pricing-card--pro {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.pricing-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-card__price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price sup { font-size: 24px; vertical-align: top; margin-top: 8px; }
.pricing-card__price span { font-size: 18px; color: var(--body-grey); font-weight: 400; }
.pricing-card__period {
  font-size: 14px;
  color: var(--body-grey);
  margin-bottom: 28px;
}
.pricing-features { margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-grey);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-check { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ============ PRIVACY HIGHLIGHT ============ */
.privacy-banner {
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 840px;
  margin: 64px auto 0;
}
.privacy-banner__icon { font-size: 36px; flex-shrink: 0; }
.privacy-banner__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.privacy-banner__desc { font-size: 15px; color: var(--body-grey); line-height: 1.6; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 64px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border-grey);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-grey); }
.faq-q {
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  color: var(--near-black);
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
}
.faq-a {
  font-size: 15px;
  color: var(--body-grey);
  line-height: 1.7;
  margin-top: 14px;
  display: none;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-item.open .faq-a { display: block; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--orange);
  padding: 96px 0;
  text-align: center;
}
.cta-section .section-title { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.8); font-size: 18px; margin: 16px 0 40px; }
.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--near-black);
  color: rgba(255,255,255,.6);
  padding: 56px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__brand-desc { font-size: 14px; line-height: 1.65; }
.footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--orange); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: rgba(255,255,255,.6); transition: var(--transition); }
.footer__bottom-links a:hover { color: var(--orange); }

/* ============ INNER PAGES ============ */
.page-hero {
  background: var(--orange-light);
  padding: 64px 0;
  border-bottom: 1px solid var(--orange-mid);
}
.page-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.page-hero__sub { font-size: 16px; color: var(--body-grey); }
.page-body {
  padding: 80px 0;
}
.page-content {
  max-width: 800px;
}
.page-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange-mid);
  color: var(--near-black);
}
.page-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--near-black);
}
.page-content p {
  font-size: 15px;
  color: var(--body-grey);
  line-height: 1.75;
  margin-bottom: 16px;
}
.page-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.page-content ul li {
  font-size: 15px;
  color: var(--body-grey);
  line-height: 1.7;
  margin-bottom: 8px;
}
.page-content a { color: var(--orange); text-decoration: underline; }
.page-content a:hover { color: #e55a27; }
.info-box {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.info-box p { color: var(--near-black); margin: 0; font-size: 14px; }
.table-wrap { overflow-x: auto; margin: 20px 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-grey);
}
th {
  background: var(--surface-light);
  font-weight: 700;
  color: var(--near-black);
}
td { color: var(--body-grey); }
tr:hover td { background: var(--surface-light); }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--body-grey);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { opacity: .5; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 560px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 56px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 48px 0; }
  .page-body { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* ============ FAQ JS ============ */
/* (toggle handled inline) */
