.marketingPage {
  --bg: #080b12;
  --bg2: #0d1018;
  --bg3: #121620;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hi: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-hi: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.92);
  --text-2: rgba(255, 255, 255, 0.62);
  --text-3: rgba(255, 255, 255, 0.35);
  --teal: #4dffc3;
  --teal-dim: rgba(77, 255, 195, 0.12);
  --teal-glow: rgba(77, 255, 195, 0.25);
  --amber: #ffb84d;
  --blue: #4d9fff;
  --blue-dim: rgba(77, 159, 255, 0.1);
  --ff-head: "Syne", sans-serif;
  --ff-body: "Outfit", sans-serif;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  position: relative;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--ff-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
}

.marketingPage *,
.marketingPage *::before,
.marketingPage *::after {
  box-sizing: border-box;
}

.marketingPage a {
  text-decoration: none;
  color: inherit;
}

.marketingPage button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.marketingPage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BG */
.marketingPage .bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.marketingPage .bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 10% 20%,
      rgba(77, 255, 195, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 90% 10%,
      rgba(77, 159, 255, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 60% at 70% 85%,
      rgba(255, 120, 77, 0.05) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 30% 30% at 30% 70%,
      rgba(180, 77, 255, 0.05) 0%,
      transparent 50%
    );
}

.marketingPage .bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 20%,
    transparent 100%
  );
}

.marketingPage .bg-grain {
  position: absolute;
  inset: -100px;
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: marketingGrain 6s steps(8) infinite;
}

@keyframes marketingGrain {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-3%, -2%);
  }
  40% {
    transform: translate(2%, 3%);
  }
  60% {
    transform: translate(-2%, 1%);
  }
  80% {
    transform: translate(3%, -1%);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* NAV */
.marketingPage .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 90px;
  display: flex;
  align-items: center;
  background: var(--bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

.marketingPage .nav-inner {
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.marketingPage .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  margin-right: 44px;
  color: var(--text);
}

.marketingPage .logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketingPage .logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3),
    transparent 60%
  );
}

.marketingPage .logo-mark svg {
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 1;
}

.marketingPage .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.marketingPage .nav-links a,
.marketingPage .nav-links button {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: 8px;
  transition:
    color 0.15s,
    background 0.15s;
  background: transparent;
  border: none;
  font-family: inherit;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
}

.marketingPage .nav-links a:hover,
.marketingPage .nav-links button:hover {
  color: var(--text);
  background: var(--surface);
}

.marketingPage .nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.marketingPage .btn-nav-ghost {
  height: 36px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border-hi);
  color: var(--text);
  background: var(--surface);
  transition:
    background 0.15s,
    border-color 0.15s;
}

.marketingPage .btn-nav-ghost:hover {
  background: var(--surface-hi);
  border-color: rgba(255, 255, 255, 0.22);
}

.marketingPage .btn-nav-cta {
  height: 36px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #05150f;
  transition:
    opacity 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
}

.marketingPage .btn-nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(77, 255, 195, 0.22);
}

/* PAGE + CONTAINER */
.marketingPage .page {
  position: relative;
  z-index: 1;
}

.marketingPage .container {
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
}

/* HERO */
.marketingPage .hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 56px;
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.marketingPage .hero-left {
  padding: 20px 0;
  opacity: 0;
  transform: translateY(28px);
  animation: marketingFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@keyframes marketingFadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.marketingPage .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(77, 255, 195, 0.22);
  background: rgba(77, 255, 195, 0.06);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}

.marketingPage .hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  animation: marketingBlink 2.2s ease infinite;
}

@keyframes marketingBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.marketingPage .hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 24px;
}

.marketingPage .grad {
  background: linear-gradient(
    110deg,
    var(--teal) 0%,
    var(--blue) 60%,
    var(--amber) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marketingPage .hero-p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 40px;
}

.marketingPage .hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.marketingPage .btn-hp {
  height: 52px;
  padding: 0 30px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #04130e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.marketingPage .btn-hp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(77, 255, 195, 0.22);
}

.marketingPage .btn-hs {
  height: 52px;
  padding: 0 26px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border-hi);
  color: var(--text);
  background: var(--surface);
  transition:
    background 0.15s,
    border-color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.marketingPage .btn-hs:hover {
  background: var(--surface-hi);
  border-color: rgba(255, 255, 255, 0.2);
}

.marketingPage .hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.marketingPage .pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  transition:
    border-color 0.15s,
    color 0.15s;
}

.marketingPage .pill:hover {
  border-color: var(--border-hi);
  color: var(--text);
}

/* LOGIN */
.marketingPage .hero-right {
  opacity: 0;
  transform: translateX(28px);
  animation: marketingFadeRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s
    forwards;
}

@keyframes marketingFadeRight {
  to {
    opacity: 1;
    transform: none;
  }
}

.marketingPage .login-card {
  background: rgba(13, 16, 24, 0.88);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}

.marketingPage .login-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(77, 255, 195, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.marketingPage .login-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(77, 159, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.marketingPage .lc-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.marketingPage .lc-title {
  font-family: var(--ff-head);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 8px;
}

.marketingPage .lc-sub {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 28px;
}

.marketingPage .form-field {
  margin-bottom: 14px;
  display: grid;
  gap: 20px;
}

.marketingPage .form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.03em;
  margin-bottom: 7px;
}

.marketingPage .form-input {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  border: 1px solid var(--border-hi);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 14px;
  padding: 0 16px;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.marketingPage .form-input::placeholder {
  color: var(--text-3);
}

.marketingPage .form-input:focus {
  border-color: rgba(77, 255, 195, 0.45);
  box-shadow: 0 0 0 3px rgba(77, 255, 195, 0.07);
}

.marketingPage .form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  margin-top: 4px;
}

.marketingPage .form-remember {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
}

.marketingPage .form-remember input {
  accent-color: var(--teal);
}

.marketingPage .form-forgot {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.marketingPage .form-forgot:hover {
  color: var(--text);
}

.marketingPage .form-error {
  display: none;
  font-size: 13px;
  color: #ff7a7a;
  line-height: 1.5;
  background: rgba(255, 80, 80, 0.07);
  border: 1px solid rgba(255, 80, 80, 0.14);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
}

.marketingPage .btn-login {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #04130e;
  transition:
    opacity 0.15s,
    transform 0.15s;
  margin-bottom: 14px;
}

.marketingPage .btn-login:hover:not(:disabled) {
  transform: translateY(-1px);
  opacity: 0.92;
}

.marketingPage .btn-login:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.marketingPage .or-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.marketingPage .or-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.marketingPage .or-text {
  font-size: 12px;
  color: var(--text-3);
}

.marketingPage .btn-google {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    opacity 0.15s,
    transform 0.15s;
  margin-bottom: 22px;
}

.marketingPage .btn-google:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

.marketingPage .g-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.marketingPage .lc-footer {
  text-align: center;
  font-size: 13px;
  color: var(--text-2);
}

.marketingPage .lc-footer button {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  transition: opacity 0.15s;
}

.marketingPage .lc-footer button:hover {
  opacity: 0.75;
}

/* STRIP */
.marketingPage .strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(8, 11, 18, 0.5);
  overflow: hidden;
}

.marketingPage .strip-track {
  display: flex;
  width: max-content;
  animation: marketingMarquee 30s linear infinite;
}

@keyframes marketingMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marketingPage .strip-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  padding: 0 36px;
  border-right: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

.marketingPage .strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}

/* SECTIONS */
.marketingPage .section {
  padding: 110px 0;
}

.marketingPage .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.marketingPage .section-h2 {
  font-family: var(--ff-head);
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 16px;
}

.marketingPage .section-p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 580px;
}

/* SHOWCASE */
.marketingPage .showcase {
  padding: 100px 0;
}

.marketingPage .showcase-header {
  text-align: center;
  margin-bottom: 52px;
}

.marketingPage .showcase-header .section-p {
  margin: 0 auto;
}

.marketingPage .tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 36px;
}

.marketingPage .tab-btn {
  height: 36px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.18s;
  white-space: nowrap;
}

.marketingPage .tab-btn.active {
  background: var(--surface-hi);
  color: var(--text);
  border: 1px solid var(--border-hi);
}

.marketingPage .tab-btn:hover:not(.active) {
  color: var(--text);
}

.marketingPage .screen-frame {
  border-radius: var(--r-xl);
  border: 1px solid var(--border-hi);
  background: var(--bg2);
  overflow: hidden;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  position: relative;
}

.marketingPage .screen-bar {
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 18px;
  gap: 8px;
}

.marketingPage .sbar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.marketingPage .sbar-dot.r {
  background: #ff5f57;
}

.marketingPage .sbar-dot.y {
  background: #febc2e;
}

.marketingPage .sbar-dot.g {
  background: #28c840;
}

.marketingPage .sbar-url {
  flex: 1;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  margin: 0 auto;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-3);
}

.marketingPage .screen-body {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg3);
  overflow: hidden;
  position: relative;
}

.marketingPage .screen-tab-content {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.marketingPage .screen-tab-content.active {
  display: block;
}

.marketingPage .screen-tab-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.marketingPage .screen-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(8, 11, 18, 0.95) 0%,
    transparent 100%
  );
  padding: 44px 28px 24px;
  pointer-events: none;
}

.marketingPage .screen-caption-tag {
  display: inline-flex;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(77, 255, 195, 0.3);
  background: rgba(77, 255, 195, 0.08);
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.marketingPage .screen-caption h3 {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.marketingPage .screen-caption p {
  font-size: 14px;
  color: var(--text-2);
}

/* FEATURES */
.marketingPage .feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 56px;
}

.marketingPage .feat-card {
  background: var(--bg2);
  padding: 36px 32px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.marketingPage .feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(77, 255, 195, 0.3),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.3s;
}

.marketingPage .feat-card:hover {
  background: var(--bg3);
}

.marketingPage .feat-card:hover::before {
  transform: scaleX(1);
}

.marketingPage .feat-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--surface-hi);
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 22px;
}

.marketingPage .feat-card h3 {
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}

.marketingPage .feat-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-2);
}

.marketingPage .feat-tag {
  display: inline-flex;
  margin-top: 16px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--teal-dim);
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
  align-items: center;
}

/* WORKFLOW */
.marketingPage .wf-section {
  padding: 110px 0;
}

.marketingPage .wf-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.marketingPage .wf-list {
  margin-top: 44px;
}

.marketingPage .wf-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}

.marketingPage .wf-item:first-child {
  border-top: 1px solid var(--border);
}

.marketingPage .wf-item:hover {
  padding-left: 6px;
}

.marketingPage .wf-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid rgba(77, 255, 195, 0.22);
  background: rgba(77, 255, 195, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--teal);
  margin-top: 2px;
}

.marketingPage .wf-body strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.marketingPage .wf-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}

.marketingPage .mock-card {
  background: var(--bg2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.marketingPage .mock-header {
  height: 38px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
}

.marketingPage .mdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.marketingPage .mdot.r {
  background: #ff5f57;
}

.marketingPage .mdot.y {
  background: #febc2e;
}

.marketingPage .mdot.g {
  background: #28c840;
}

.marketingPage .mock-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg3);
  overflow: hidden;
}

.marketingPage .mock-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.marketingPage .mock-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.marketingPage .mock-note {
  padding: 16px 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marketingPage .mock-note:nth-child(2n) {
  border-right: none;
}

.marketingPage .mock-note:nth-child(3),
.marketingPage .mock-note:nth-child(4) {
  border-bottom: none;
}

.marketingPage .mock-note strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.marketingPage .mock-note span {
  font-size: 12px;
  color: var(--text-2);
}

/* PRICING */
.marketingPage .pricing-section {
  padding: 110px 0;
}

.marketingPage .pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.marketingPage .pricing-header .section-p {
  margin: 0 auto;
}

.marketingPage .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.marketingPage .price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition:
    border-color 0.2s,
    transform 0.2s;
  position: relative;
}

.marketingPage .price-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
}

.marketingPage .price-card.popular {
  border-color: rgba(77, 255, 195, 0.3);
  background: linear-gradient(
    160deg,
    rgba(77, 255, 195, 0.04) 0%,
    var(--bg2) 60%
  );
}

.marketingPage .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  height: 24px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #04130e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marketingPage .plan-tag {
  display: inline-flex;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-hi);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  align-items: center;
}

.marketingPage .plan-name {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
}

.marketingPage .plan-name.teal {
  color: var(--teal);
}

.marketingPage .plan-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 22px;
}

.marketingPage .plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
}

.marketingPage .plan-price-num {
  font-family: var(--ff-head);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.marketingPage .plan-price-mo {
  font-size: 14px;
  color: var(--text-2);
}

.marketingPage .plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.marketingPage .plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.marketingPage .plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
}

.marketingPage .plan-features li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--teal-dim);
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketingPage .btn-plan {
  width: 100%;
  height: 46px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border-hi);
  color: var(--text);
  background: var(--surface);
  transition: all 0.15s;
}

.marketingPage .btn-plan:hover {
  background: var(--surface-hi);
  border-color: rgba(255, 255, 255, 0.22);
}

.marketingPage .btn-plan.featured {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #04130e;
  border-color: transparent;
}

.marketingPage .btn-plan.featured:hover {
  opacity: 0.9;
}

/* CTA */
.marketingPage .cta-section {
  padding: 0 0 110px;
}

.marketingPage .cta-card {
  background: var(--bg2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-xl);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.marketingPage .cta-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(77, 255, 195, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.marketingPage .cta-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(77, 159, 255, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.marketingPage .cta-left {
  position: relative;
  z-index: 1;
}

.marketingPage .cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.marketingPage .btn-cta-big {
  height: 56px;
  padding: 0 36px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #04130e;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.marketingPage .btn-cta-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(77, 255, 195, 0.22);
}

.marketingPage .btn-cta-out {
  height: 56px;
  padding: 0 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--border-hi);
  color: var(--text);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  white-space: nowrap;
}

.marketingPage .btn-cta-out:hover {
  background: var(--surface-hi);
}

/* FOOTER */
.marketingPage .footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.marketingPage .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.marketingPage .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 800;
}

.marketingPage .footer-links {
  display: flex;
  gap: 24px;
}

.marketingPage .footer-links a,
.marketingPage .footer-links button {
  font-size: 13px;
  color: var(--text-3);
  transition: color 0.15s;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
}

.marketingPage .footer-links a:hover,
.marketingPage .footer-links button:hover {
  color: var(--text-2);
}

.marketingPage .footer-copy {
  font-size: 12px;
  color: var(--text-3);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .marketingPage .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 80px 0;
  }

  .marketingPage .hero-right {
    max-width: 480px;
  }

  .marketingPage .wf-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .marketingPage .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .marketingPage .feat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .marketingPage .cta-card {
    grid-template-columns: 1fr;
    padding: 50px 40px;
  }
}

@media (max-width: 760px) {
  .marketingPage .nav-links {
    display: none;
  }

  .marketingPage .nav-inner {
    width: calc(100% - 32px);
  }

  .marketingPage .hero-h1 {
    font-size: 38px;
  }

  .marketingPage .hero,
  .marketingPage .container {
    width: calc(100% - 32px);
  }

  .marketingPage .feat-grid,
  .marketingPage .pricing-grid {
    grid-template-columns: 1fr;
  }

  .marketingPage .cta-card {
    padding: 36px 28px;
  }

  .marketingPage .tabs {
    flex-wrap: wrap;
    width: 100%;
  }

  .marketingPage .mock-notes {
    grid-template-columns: 1fr;
  }

  .marketingPage .section,
  .marketingPage .wf-section,
  .marketingPage .pricing-section,
  .marketingPage .showcase {
    padding: 80px 0;
  }
}

.warningArchivedFrame {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px;
}

.warningArchivedBox {
  width: min(420px, 100%);
  padding: 24px;
  border-radius: 20px;
  background: rgba(20, 24, 31, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.warningArchivedBox h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.warningArchivedBox p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.warningArchivedActions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.warningArchivedCancelBtn,
.warningArchivedConfirmBtn {
  border: 0;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.warningArchivedCancelBtn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.warningArchivedConfirmBtn {
  background: #ef4444;
  color: #fff;
}

.forgotPopupBackdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.forgotPopup {
  position: relative;
  width: min(460px, 92vw);
  padding: 28px;
  border-radius: 24px;
  background: rgba(19, 19, 26, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  color: white;
}

.forgotPopupClose {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.forgotEyebrow {
  margin: 0 0 8px;
  opacity: 0.7;
}

.forgotTitle {
  margin: 0 0 8px;
  font-size: 24px;
}

.forgotDesc {
  margin: 0 0 18px;
  opacity: 0.82;
  line-height: 1.5;
}

.form-success {
  margin-top: 10px;
  color: #7dffb3;
}

.btn-login.forgotPass {
  margin-top: 20px;
}
