/* Seller marketing site — extends PayRelay tokens */
@import url('payrelay.css');

.sw-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 8px;
  max-width: 1080px;
  margin: 0 auto;
  width: calc(100% - 40px);
}

.sw-nav .logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
}
.sw-nav .logo span { color: var(--brand); }

.sw-nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.sw-nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.sw-nav-links a:hover { color: var(--brand-deep); }

.sw-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px 56px;
  min-height: calc(100vh - 80px);
  display: grid;
  align-content: center;
  position: relative;
  overflow: hidden;
}

.sw-hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto auto;
  width: min(70vw, 640px);
  height: min(70vw, 640px);
  background:
    radial-gradient(circle at 40% 40%, rgba(20, 184, 166, 0.35), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(15, 118, 110, 0.22), transparent 50%);
  animation: swDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes swDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-4%, 6%) scale(1.08); }
}

.sw-hero > * { position: relative; z-index: 1; }

.sw-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 18px;
  opacity: 0;
  animation: swFadeUp 0.7s ease forwards 0.1s;
}

.sw-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  max-width: 12ch;
  margin-bottom: 18px;
  opacity: 0;
  animation: swFadeUp 0.8s ease forwards 0.2s;
}
.sw-hero h1 em {
  font-style: normal;
  color: var(--brand);
}

.sw-hero .lead {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 28px;
  opacity: 0;
  animation: swFadeUp 0.8s ease forwards 0.35s;
}

.sw-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: swFadeUp 0.8s ease forwards 0.5s;
}

@keyframes swFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.sw-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 20px;
}

.sw-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.sw-section .section-lead {
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 28px;
}

.sw-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.sw-feature {
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.sw-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.35);
}
.sw-feature h3 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 8px;
}
.sw-feature p { font-size: 14px; color: var(--muted); }

.sw-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.sw-plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sw-plan.featured {
  border-color: var(--brand);
  box-shadow: 0 22px 50px rgba(15, 118, 110, 0.14);
  position: relative;
}
.sw-plan.featured::after {
  content: 'Popular';
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-deep);
  background: rgba(20, 184, 166, 0.18);
  padding: 4px 8px;
  border-radius: 999px;
}
.sw-plan h3 {
  font-family: var(--font-display);
  font-size: 20px;
}
.sw-plan .price {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-deep);
}
.sw-plan .price small {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}
.sw-plan .blurb { color: var(--muted); font-size: 14px; flex: 1; }
.sw-plan ul {
  list-style: none;
  font-size: 13px;
  color: var(--ink);
  margin: 8px 0 14px;
}
.sw-plan ul li { margin-bottom: 6px; padding-left: 16px; position: relative; }
.sw-plan ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0; top: 7px;
}

.sw-footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 20px 48px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.sw-success-key {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 700;
  color: var(--brand-deep);
  background: #0B1220;
  color: #99F6E4;
  padding: 16px 18px;
  border-radius: 12px;
  word-break: break-all;
  margin: 14px 0;
}

.sw-dl-list {
  display: grid;
  gap: 12px;
}
.sw-dl-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  flex-wrap: wrap;
}
.sw-dl-item strong { font-family: var(--font-display); display: block; }
.sw-dl-item span { font-size: 13px; color: var(--muted); }

@media (max-width: 640px) {
  .sw-hero { min-height: auto; padding-top: 36px; }
}
