/* seller.css - page-specific styles only */

.seller-screens {
  background: linear-gradient(160deg, rgba(5, 68, 98, 0.04), rgba(191, 214, 63, 0.05));
  padding: 100px 0 110px;
}
.seller-screens .section-title p a { color: var(--teal); font-weight: 600; }
.seller-screens .section-title p a:hover { text-decoration: underline; }


/* HERO — clean, no cloudy background, simple logo on the right */
  .seller-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 80px;
  }

.seller-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
  }

.seller-hero h1.heading {
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    font-weight: 800;
    margin-bottom: 22px;
  }

.seller-hero h1 .accent { color: var(--teal); }

.seller-hero .excerpt p {
    font-size: 17px;
    color: var(--ink-soft);
    margin-bottom: 28px;
    max-width: 540px;
  }

.seller-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.seller-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

.seller-hero-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 420px;
    border-radius: 24px;
  }

/* Server system table */
  .server-section {
    background: linear-gradient(160deg, rgba(191, 214, 63, 0.06), rgba(5, 68, 98, 0.04));
  }

.server-table {
    max-width: 980px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 50px -28px rgba(5, 68, 98, 0.25);
  }

.server-row {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 22px;
    padding: 22px 30px;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    transition: background .3s var(--ease);
  }

.server-row:last-child { border-bottom: none; }

.server-row::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--lime);
    transform: translateX(-101%);
    transition: transform .45s var(--ease);
    z-index: 1;
  }

.server-row:hover { background: var(--bg-soft); }

.server-row:hover::before { transform: translateX(0); }

.server-row.leaving::before { transform: translateX(101%); }

.server-row.resetting::before { transform: translateX(-101%); transition: none; }

.server-row-key {
    display: flex;
    align-items: center;
    gap: 12px;
  }

.server-row-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--lime);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex: 0 0 auto;
  }

.server-row-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.3;
  }

.server-row-value {
    font-size: 15.5px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.4;
  }

.server-row-value strong { color: var(--teal); font-weight: 800; }

/* Panel showcase */
  .panel-section { padding-bottom: 140px; }

.panel-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
  }

.panel-info h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-bottom: 18px;
  }

.panel-info p {
    color: var(--ink-soft);
    font-size: 16px;
    margin-bottom: 22px;
    max-width: 560px;
  }

.panel-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
    max-width: 560px;
  }

.panel-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-soft);
  }

.panel-feature i {
    width: 26px; height: 26px;
    border-radius: 8px;
    background: var(--lime);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex: 0 0 auto;
  }

.panel-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.panel-screenshot {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    background: var(--bg-soft);
  }

.panel-screenshot img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
  }

/* Panel link section */
  .panel-link-section {
    padding: 100px 0 140px;
    background: linear-gradient(160deg, rgba(5, 68, 98, 0.04), rgba(191, 214, 63, 0.06));
  }

.panel-link-card {
    max-width: 820px;
    margin: 36px auto 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    text-align: center;
  }

.panel-link-url {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-soft);
    border: 1px dashed var(--border-strong);
    border-radius: 14px;
    padding: 16px 20px;
    margin: 24px 0 28px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: var(--teal);
    word-break: break-all;
    justify-content: center;
    flex-wrap: wrap;
  }

.panel-link-url i { color: var(--lime); }

.panel-link-url strong { font-weight: 700; }

.panel-link-copy {
    background: var(--lime);
    color: var(--black);
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s var(--ease);
  }

.panel-link-copy:hover { transform: translateY(-1px); }

.panel-link-copy.copied { background: var(--teal); color: var(--white); }

.panel-link-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
  }

.panel-link-note {
    color: var(--ink-mute);
    font-size: 14px;
    margin-top: 22px;
  }

.panel-link-note a { color: var(--teal); font-weight: 600; }

/* Video section */
  .video-section {
    background: linear-gradient(160deg, rgba(5, 68, 98, 0.04), rgba(191, 214, 63, 0.05));
  }

.video-wrap {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    background: var(--ink);
    box-shadow: 0 30px 60px -28px rgba(5, 68, 98, 0.45);
    aspect-ratio: 16/9;
    position: relative;
  }

.video-wrap iframe,
  .video-wrap video {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    object-fit: cover;
    background: var(--ink);
  }

/* World map — free, no box */
  .map-section {
    padding-bottom: 140px;
  }

.map-legend {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
  }

.map-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
  }

.map-legend-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    flex: 0 0 auto;
  }

.map-legend-dot.tier-best { background: var(--lime); box-shadow: 0 0 0 3px rgba(191, 214, 63, 0.25); }

.map-legend-dot.tier-strong { background: var(--teal); }

.map-legend-dot.tier-good { background: var(--slate); }

.map-legend-dot.tier-other { background: rgba(109, 135, 170, 0.35); }

.map-canvas {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    min-height: 320px;
  }

/* The injected SVG flows freely on the page background.
     Country paths are styled directly via tier classes. */
  .map-canvas svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
  }

.map-canvas svg path {
    fill: rgba(109, 135, 170, 0.22);
    stroke: var(--white);
    stroke-width: 0.5;
    transition: fill .4s var(--ease);
  }

.map-canvas svg path.tier-supported { fill: var(--slate); }

.map-canvas svg path.tier-optimised { fill: var(--teal); }

.map-canvas svg path.tier-flagship  { fill: var(--lime); }

/* Spain pulses subtly to draw the eye */
  @keyframes flagshipPulse {
    0%, 100% { fill: var(--lime); }
    50%      { fill: #d6e96d; }
  }

.map-canvas svg path.tier-flagship { animation: flagshipPulse 2.6s ease-in-out infinite; }

.map-loading,
  .map-error {
    text-align: center;
    padding: 60px 20px;
    font-size: 14px;
    color: var(--ink-mute);
    font-family: 'JetBrains Mono', monospace;
  }

.map-credit {
    margin-top: 22px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
  }

/* Profit calculator */
  .profit-section { padding-top: 110px; }

.profit {
    max-width: 1040px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -28px rgba(5, 68, 98, 0.30);
    position: relative;
  }

.profit::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--lime), var(--teal));
  }

.profit-head {
    padding: 32px 40px 18px;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

.profit-head .eyebrow { margin-bottom: 8px; }

.profit-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 6px;
  }

.profit-head p {
    font-size: 14px;
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 auto;
  }

.profit-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

.profit-controls {
    padding: 36px 36px;
    border-right: 1px solid var(--border);
    background: var(--bg-soft);
  }

.profit-control { margin-bottom: 26px; }

.profit-control:last-child { margin-bottom: 0; }

.profit-control-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
  }

.profit-control-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

.profit-control-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
  }

.profit-control-val .unit {
    font-size: 14px;
    color: var(--teal);
    font-weight: 600;
    margin-left: 2px;
  }

.profit-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: var(--border);
    outline: none;
    transition: background .25s var(--ease);
  }

.profit-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px -2px rgba(5, 68, 98, 0.40);
    cursor: pointer;
    transition: transform .15s var(--ease), background .25s var(--ease);
  }

.profit-range::-webkit-slider-thumb:hover { transform: scale(1.12); background: var(--lime); }

.profit-range::-webkit-slider-thumb:active { transform: scale(0.95); }

.profit-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px -2px rgba(5, 68, 98, 0.40);
    cursor: pointer;
  }

.profit-range::-moz-range-thumb:hover { background: var(--lime); }

.profit-tickrow {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
  }

.profit-pricing-tabs {
    display: flex;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px;
    margin-top: 6px;
  }

.profit-pricing-tab {
    position: relative;
    flex: 1;
    padding: 8px 12px;
    text-align: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: background .25s var(--ease), color .25s var(--ease);
  }

.profit-pricing-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--lime);
    transform: translateX(-101%);
    transition: transform .45s var(--ease);
    z-index: -1;
  }

.profit-pricing-tab:hover:not(.is-active)::before { transform: translateX(0); }

.profit-pricing-tab.leaving::before { transform: translateX(101%); }

.profit-pricing-tab.resetting::before { transform: translateX(-101%); transition: none; }

.profit-pricing-tab.is-active {
    background: var(--teal);
    color: var(--white);
  }

.profit-pricing-tab:hover:not(.is-active) {
    background: var(--bg-soft);
    color: var(--teal);
  }

.profit-results {
    padding: 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

.profit-headline {
    text-align: center;
    margin-bottom: 6px;
  }

.profit-headline-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-mute);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

.profit-headline-num {
    font-size: 56px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.02em;
  }

.profit-headline-num .euro {
    font-size: 30px;
    color: var(--teal);
    font-weight: 700;
    vertical-align: super;
    margin-right: 4px;
  }

.profit-headline-sub {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-top: 6px;
  }

.profit-headline-sub strong { color: var(--teal); }

.profit-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

.profit-stat {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
  }

.profit-stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-mute);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

.profit-stat-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
  }

.profit-stat-val .small { font-size: 13px; color: var(--ink-soft); font-weight: 500; }

.profit-stat-val.is-positive { color: var(--teal); }

.profit-cta {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 15px;
  }

.profit-fineprint {
    font-size: 11px;
    color: var(--ink-mute);
    text-align: center;
    line-height: 1.5;
    padding: 0 36px 24px;
  }

/* FAQ accordion */
  .faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.faq-foot {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: var(--ink-soft);
  }

.faq-foot a {
    color: var(--teal);
    font-weight: 700;
    border-bottom: 1px solid rgba(5, 68, 98, 0.25);
  }

.faq-foot a:hover { border-bottom-color: var(--teal); }

@media (max-width: 1024px) {
    .seller-hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .seller-hero-logo img { max-height: 320px; }
    .panel-grid { grid-template-columns: 1fr; gap: 40px; }
    .profit-body { grid-template-columns: 1fr; }
    .profit-controls { border-right: none; border-bottom: 1px solid var(--border); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .seller-hero { padding-top: 130px; min-height: auto; }
    .nav-menu { display: none; }
    .burger { display: flex; }
    .server-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 22px; }
    .server-table { border-radius: 16px; }
    .map-card { padding: 24px; }
    .map-head { flex-direction: column; align-items: flex-start; }
    .panel-features { grid-template-columns: 1fr; }
    .profit-head { padding: 26px 22px 14px; }
    .profit-controls, .profit-results { padding: 24px 22px; }
    .profit-fineprint { padding: 0 22px 22px; }
    .profit-headline-num { font-size: 44px; }
    .profit-headline-num .euro { font-size: 26px; }
    .footer-grid { grid-template-columns: 1fr; }
    .wa-float { bottom: 18px; right: 18px; width: 54px; height: 54px; font-size: 26px; }
  }
