/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Mono:wght@400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --black: #111111;
  --white: #FFFFFF;
  --cream: #F8F6F2;
  --warm: #EDE9E3;
  --border: #E5E2DC;
  --mid: #999999;
  --green: #2d6a4f;
  --amber: #b45309;
  --blue: #1d4ed8;
  --purple: #6d28d9;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'DM Mono', monospace;

  --max-width: 1200px;
  --page-padding: 40px;
  --gutter: 40px;
  --section-padding: 100px;
  --nav-height: 56px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; }
html.smooth-scroll { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
}

.section-padding {
  padding: var(--section-padding) 0;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--black); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-right a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.3s;
}
.nav-right a:hover { color: var(--black); }
.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--black);
  transition: background 0.3s, color 0.3s;
}
.btn-primary:hover {
  background: var(--white);
  color: var(--black);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--black);
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--black);
  transition: background 0.3s, color 0.3s;
}
.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
}

/* ===== HERO ===== */
.hero {
  margin-top: var(--nav-height);
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100vh - var(--nav-height));
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.hero-content {
  background: var(--cream);
  padding: 80px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '— ';
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
}
.hero-body {
  color: #555;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat {
  text-align: left;
}
.hero-stat .stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
}
.hero-stat .stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--black);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track span {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 24px;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--white);
}
.how-it-works-header {
  margin-bottom: 60px;
}
.how-it-works-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 12px;
}
.how-it-works-header h2 em { font-style: italic; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}
.step:last-child { border-right: none; }
.step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: width 0.4s ease;
}
.step:hover { background: var(--cream); }
.step:hover::after { width: 100%; }
.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
}
.step-icon {
  font-size: 24px;
  margin-bottom: 16px;
}
.step-title {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.step-body {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
}

/* ===== AI DIFFERENCE ===== */
.ai-section {
  background: var(--cream);
}
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ai-tag {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.ai-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.ai-content h2 em { font-style: italic; }
.ai-content p {
  color: #555;
  line-height: 1.7;
  max-width: 480px;
}
.ai-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ai-image-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.ai-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ai-image-card:hover img { transform: scale(1.04); }
.ai-image-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--white);
}
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}
.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 12px;
}
.pricing-header h2 em { font-style: italic; }
.pricing-header p {
  color: var(--mid);
  margin-top: 12px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.tier {
  padding: 40px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
}
.tier:last-child { border-right: none; }
.tier:hover { background: var(--cream); }
.tier.popular {
  border-top: 3px solid var(--black);
}
.tier-stamp {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--black);
  color: var(--white);
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transform: translateY(-100%);
}
.tier-range {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tier-percent {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}
.tier-keep {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 24px;
}
.tier hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}
.tier-features {
  margin-bottom: 28px;
}
.tier-features li {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #555;
}
.tier-features li::before {
  content: '✓';
  margin-right: 8px;
  font-weight: 700;
  color: var(--black);
}
.tier-example {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mid);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pricing-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-top: none;
  background: var(--cream);
}
.pricing-footer-item {
  padding: 32px;
}
.pricing-footer-item:first-child {
  border-right: 1px solid var(--border);
}
.pricing-footer-item h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}
.pricing-footer-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== SUBMISSION FORM ===== */
.submit-section {
  background: var(--cream);
}
.submit-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
}
.submit-info {
  background: var(--black);
  color: var(--white);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.submit-info .eyebrow { color: var(--mid); }
.submit-info h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 12px;
  margin-bottom: 40px;
}
.info-block {
  padding-left: 20px;
  border-left: 2px solid #333;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.info-block:hover { border-left-color: var(--white); }
.info-block h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.info-block p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}
.flash-box {
  background: #1a1a1a;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
}
.submit-form-panel {
  background: var(--white);
  padding: 60px 48px;
}
.submit-form-panel h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }
.submit-btn {
  width: 100%;
  background: var(--black);
  color: var(--white);
  padding: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.submit-btn:hover { opacity: 0.85; }
.form-success {
  display: none;
  text-align: center;
  padding: 80px 40px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--mid);
  font-size: 14px;
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-quote {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  max-width: 500px;
}
.about-content {
  background: var(--black);
  color: var(--white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-content p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 480px;
}
.about-ctas {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--white);
  transition: background 0.3s, color 0.3s;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}
.btn-ghost-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.3s;
}
.btn-ghost-white:hover {
  border-color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid #222;
  padding: 48px 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 11px;
  color: #666;
}

/* ===== PORTAL ===== */
.portal-nav {
  position: sticky;
  top: 0;
  background: var(--black);
  height: var(--nav-height);
  z-index: 1000;
  border-bottom: 1px solid #222;
}
.portal-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portal-nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}
.portal-nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}
.portal-tabs {
  display: flex;
  gap: 0;
}
.portal-tabs a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  padding: 18px 20px;
  transition: color 0.3s;
}
.portal-tabs a:hover, .portal-tabs a.active {
  color: var(--white);
}
.portal-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.portal-avatar {
  width: 32px;
  height: 32px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}
.portal-user {
  font-size: 13px;
  color: #aaa;
}
.portal-back {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  transition: color 0.3s;
}
.portal-back:hover { color: var(--white); }

/* Dashboard Header */
.dashboard-header {
  padding: 48px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.dashboard-header h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
}
.dashboard-header .sub {
  font-size: 13px;
  color: var(--mid);
  margin-top: 4px;
}
.payout-info {
  text-align: right;
}
.payout-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}
.payout-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
}
.payout-date {
  font-size: 12px;
  color: var(--mid);
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.stat-card {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.stat-card:last-child { border-right: none; }
.stat-card-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  margin-bottom: 8px;
}
.stat-card-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
}
.stat-card-sub {
  font-size: 12px;
  color: var(--mid);
  margin-top: 4px;
}

/* Listings Table */
.listings-container {
  border: 1px solid var(--border);
  margin-bottom: 60px;
}
.listings-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.listings-toolbar h3 {
  font-size: 15px;
  font-weight: 600;
}
.filter-buttons {
  display: flex;
  gap: 8px;
}
.filter-btn {
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mid);
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
  background: var(--white);
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.listings-table {
  width: 100%;
  border-collapse: collapse;
}
.listings-table th {
  text-align: left;
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.listings-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.listings-table tr:last-child td { border-bottom: none; }
.listings-table tr:hover td { background: var(--cream); }
.item-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}
.item-meta {
  font-size: 12px;
  color: var(--mid);
}
.platform-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: 1px;
  border: 1px solid var(--border);
  font-weight: 500;
}
.price {
  font-family: var(--font-mono);
  font-size: 13px;
}
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.status-live { background: #e6f4ec; color: var(--green); }
.status-photography { background: #fef3e2; color: var(--amber); }
.status-auth { background: #ede5fb; color: var(--purple); }
.status-sold { background: #e3eafc; color: var(--blue); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-image {
    height: 50vh;
  }
  .hero-content {
    padding: 48px 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --page-padding: 24px;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tier:nth-child(2) { border-right: none; }
  .tier:nth-child(1), .tier:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .submit-container {
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .ai-grid {
    grid-template-columns: 1fr;
  }
  .pricing-footer {
    grid-template-columns: 1fr;
  }
  .pricing-footer-item:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn-primary { display: none; }
  .hamburger { display: flex; }

  .listings-table th:nth-child(4),
  .listings-table td:nth-child(4),
  .listings-table th:nth-child(5),
  .listings-table td:nth-child(5) {
    display: none;
  }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .tier { border-right: none !important; border-bottom: 1px solid var(--border); }
  .tier:last-child { border-bottom: none; }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(1), .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .hero-content { padding: 32px 20px; }
  .submit-info, .submit-form-panel { padding: 40px 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .dashboard-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .payout-info { text-align: left; }
}
