/* ================================================
   CUTTING IMAGE DIGITAL ENTREPRENEURS
   Full Design System — style.css
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black:       #0B0B0D;
  --black-soft:  #111115;
  --black-mid:   #18181C;
  --border:      #222228;
  --red:         #E10600;
  --red-hover:   #FF1A0E;
  --white:       #FFFFFF;
  --gray:        #A0A0A0;
  --gray-dim:    #555560;
  --grad-start:  #FF6B1A;
  --grad-mid:    #E8324A;
  --grad-end:    #8B2BE2;
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Inter', sans-serif;
  --radius:      6px;
  --radius-lg:   10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- TOPBAR ---- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}

.topbar .logo { height: 52px; width: auto; }

/* ---- HERO ---- */
.hero {
  padding: 72px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.6s ease both;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end));
}

.guide-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(225,6,0,0.3);
  border-radius: 3px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.headline .accent { color: var(--red); }

.subheadline {
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 400;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ---- GUIDE COVER MOCK ---- */
.guide-cover-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}

.guide-cover {
  width: 220px;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.guide-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.guide-cover-logo { height: 44px; margin: 0 auto 14px; }

.guide-cover-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 6px;
}

.guide-cover-title span { color: var(--red); }

.guide-cover-sub {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.5;
}

.guide-cover-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grad-start);
  border: 1px solid rgba(255,107,26,0.3);
  border-radius: 3px;
  padding: 3px 10px;
}

/* ---- POSITIONING BLOCK ---- */
.section { padding: 52px 24px; }
.section-dark { background: var(--black-soft); }

.container {
  max-width: 760px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.body-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.body-text strong { color: var(--white); font-weight: 600; }

/* ---- BENEFITS LIST ---- */
.benefits-list {
  list-style: none;
  margin: 24px 0 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: #C8C8C8;
  line-height: 1.5;
}

.benefits-list li:last-child { border-bottom: none; }

.benefits-list .check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(225,6,0,0.12);
  border: 1px solid rgba(225,6,0,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.benefits-list .check::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* ---- OPT-IN FORM ---- */
.form-shell {
  background: var(--black-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.form-shell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.form-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}

.input-group { margin-bottom: 16px; }

.input-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.input {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.input:focus { border-color: rgba(225,6,0,0.5); }
.input::placeholder { color: var(--gray-dim); }

.optional-tag {
  font-size: 10px;
  color: var(--gray-dim);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 6px;
}

/* ---- BUTTONS ---- */
.cta-primary {
  display: inline-block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 17px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}

.cta-primary:hover {
  background: var(--red-hover);
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(225,6,0,0.35);
}

.cta-primary:active { transform: scale(0.99); }

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-align: center;
}

.cta-secondary:hover {
  border-color: var(--gray-dim);
  background: rgba(255,255,255,0.04);
  transform: scale(1.01);
}

/* ---- TRUST FOOTER ---- */
.trust-bar {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}

.trust-bar p {
  font-size: 12px;
  color: var(--gray-dim);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/* ---- THANK YOU PAGE ---- */
.confirm-icon {
  width: 72px;
  height: 72px;
  background: rgba(225,6,0,0.1);
  border: 2px solid rgba(225,6,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.confirm-icon::after {
  content: '';
  width: 24px;
  height: 24px;
  background: var(--red);
  border-radius: 50%;
}

.preframe-block {
  background: var(--black-soft);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.preframe-block p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 8px;
}

.preframe-block p:last-child { margin: 0; }
.preframe-block strong { color: var(--white); }

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

/* ---- DOWNLOAD PAGE ---- */
.download-card {
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end));
}

.download-icon {
  font-size: 40px;
  margin-bottom: 14px;
  line-height: 1;
}

.download-status {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.download-meta {
  font-size: 12px;
  color: var(--gray-dim);
  letter-spacing: 0.06em;
}

.apply-section {
  background: var(--black-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}

.apply-section .headline { font-size: clamp(28px, 5vw, 44px); margin-bottom: 12px; }
.apply-section .body-text { max-width: 500px; margin: 0 auto 28px; }

.return-link {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--gray-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.return-link:hover { color: var(--gray); }

/* ---- DIVIDER ---- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 36px 0;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-1 { animation: fadeUp 0.55s ease 0.05s both; }
.anim-2 { animation: fadeUp 0.55s ease 0.15s both; }
.anim-3 { animation: fadeUp 0.55s ease 0.25s both; }
.anim-4 { animation: fadeUp 0.55s ease 0.35s both; }
.anim-5 { animation: fadeUp 0.55s ease 0.45s both; }

/* ---- FOOTER ---- */
.footer-bar {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}

.footer-bar p {
  font-size: 11px;
  color: var(--gray-dim);
  line-height: 1.6;
}

/* ---- RESPONSIVE ---- */
@media (min-width: 640px) {
  .btn-group { flex-direction: row; }
  .cta-primary, .cta-secondary { width: auto; }
  .form-shell { padding: 44px 48px; }
}
