﻿:root {
  --bg: #f1f5fb;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --text: #101d31;
  --muted: #67758b;
  --line: #dce5f1;
  --navy: #102a54;
  --blue: #176fc1;
  --blue-dark: #0e4e91;
  --blue-soft: #eaf4ff;
  --green: #0c9f63;
  --green-soft: #e8f8f1;
  --red: #c9352b;
  --red-soft: #fff1f0;
  --shadow: 0 18px 50px rgba(24, 45, 77, 0.10);
  --shadow-soft: 0 10px 28px rgba(24, 45, 77, 0.07);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 0 0, rgba(30, 113, 198, 0.11), transparent 30rem),
    var(--bg);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

/* =====================================================
   SHARED CONTAINERS
   ===================================================== */

.nav-shell,
.footer-shell,
.app-shell,
.home-hero-inner,
.tool-hero-inner {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(220, 229, 241, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-link > span:last-child {
  display: grid;
  gap: 2px;
}

.brand-link strong {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.brand-link small {
  color: var(--muted);
  font-size: 11px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  box-shadow: 0 8px 18px rgba(16, 42, 84, 0.13);
}

.main-nav {
  display: flex;
  gap: 8px;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 11px;
  color: #46556b;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

/* =====================================================
   SHARED LABELS / HEADINGS
   ===================================================== */

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-heading-row.compact {
  margin-bottom: 17px;
}

.section-heading-row h2,
.scrape-panel h2,
.recent-panel h2,
.result-summary-panel h2,
.image-panel h2 {
  margin: 7px 0 0;
  font-size: 25px;
  letter-spacing: -0.6px;
}

.section-heading-row p,
.section-description,
.tool-note,
.image-panel .section-heading-row p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* =====================================================
   HOME PAGE
   ===================================================== */

.home-hero {
  padding: 72px 0 108px;
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(84, 190, 255, 0.38), transparent 24rem),
    linear-gradient(135deg, #0c2247 0%, #145b9d 62%, #258bd2 100%);
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: center;
  gap: 60px;
}

.home-hero-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}

.home-hero-logo {
  width: 112px;
  height: 112px;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  background: white;
  box-shadow: 0 20px 42px rgba(4, 22, 51, 0.25);
}

.home-hero .eyebrow {
  color: #a9ddff;
}

.home-hero h1 {
  max-width: 720px;
  margin: 14px 0;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -2.6px;
}

.home-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.hero-stat-card {
  padding: 24px;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(4, 22, 51, 0.22);
  backdrop-filter: blur(12px);
}

.hero-stat-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.hero-stat-card strong {
  margin: 7px 0 2px;
  font-size: 58px;
  line-height: 1;
}

.hero-stat-card small {
  color: rgba(255, 255, 255, 0.7);
}

.home-app-shell {
  margin-top: -58px;
  padding-bottom: 54px;
}

.home-app-shell > .section-heading-row {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.app-card {
  min-height: 330px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.app-card-live:hover {
  transform: translateY(-4px);
  border-color: #b7d5f3;
  box-shadow: 0 22px 45px rgba(24, 45, 77, 0.14);
}

.app-card-future {
  background: linear-gradient(150deg, #fbfcfe, #f3f6fa);
}

.app-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  font-size: 28px;
  font-weight: 900;
}

.app-icon-download {
  color: white;
  background: linear-gradient(135deg, var(--blue-dark), #2695dc);
}

.app-icon-price {
  color: white;
  background: linear-gradient(135deg, #18345f, #2d6bb0);
}

.app-icon-plus {
  color: #7d899a;
  background: #e9eef4;
}

.status-pill {
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.status-live {
  color: #087348;
  background: var(--green-soft);
}

.status-planned {
  color: #657286;
  background: #e9eef4;
}

.app-card h3 {
  margin: 0 0 9px;
  font-size: 24px;
  letter-spacing: -0.5px;
}

.app-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.app-card-action {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  color: var(--blue-dark);
  font-weight: 900;
}

.app-card-action.muted {
  color: #8a95a5;
}

/* =====================================================
   SHARED TOOL PAGE
   Used by Neshome and Kartell
   ===================================================== */

.tool-hero {
  padding: 34px 0 78px;
  color: white;
  background:
    radial-gradient(circle at 90% 0, rgba(65, 176, 244, 0.4), transparent 25rem),
    linear-gradient(135deg, #0c2348, #1464aa 68%, #2c93d7);
  border-radius: 0 0 34px 34px;
}

.tool-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.back-link:hover {
  color: white;
}

.tool-title-line {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tool-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 28px;
  font-weight: 900;
}

.tool-title-line h1 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.8px;
}

.tool-title-line p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.hero-badge {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}



.success-icon {
  color: #d9ffed;
}

.success-badge {
  background: rgba(10, 118, 75, 0.31);
}

.tool-content-shell {
  margin-top: -48px;
  padding-bottom: 54px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.alert {
  margin-bottom: 18px;
  padding: 15px 17px;
  border: 1px solid #f5c5c1;
  border-radius: var(--radius-md);
  color: #a2221a;
  background: var(--red-soft);
  font-weight: 800;
}

.scrape-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 360px;
  overflow: hidden;
}

.scrape-main {
  padding: 28px;
}

.scrape-guide {
  padding: 28px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, #f9fbff, #eef6ff);
}

.form-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 14px;
  margin-top: 23px;
}

.field-group label {
  display: block;
  margin: 0 0 8px;
  color: #415168;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.field-group input,
.copy-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--text);
  background: #fbfdff;
  outline: none;
}

.field-group input {
  min-height: 50px;
  padding: 13px 14px;
}

.field-group input:focus,
.copy-card textarea:focus {
  border-color: #58a0df;
  background: white;
  box-shadow: 0 0 0 4px rgba(23, 111, 193, 0.11);
}

.form-actions,
.result-actions,
.recent-actions,
.image-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.form-actions {
  margin-top: 14px;
}

.btn {
  min-height: 43px;
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.99);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), #2a8bd3);
}

.btn-success {
  color: white;
  background: linear-gradient(135deg, #0b925b, #14b979);
}

.btn-dark {
  color: white;
  background: #172238;
}

.btn-soft {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.btn-ghost {
  color: #46556b;
  border: 1px solid var(--line);
  background: white;
}

.btn-small {
  min-height: 36px;
  padding: 8px 11px;
}

.loading-box {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid #cfe4f8;
  border-radius: 13px;
  color: var(--blue-dark);
  background: #f0f8ff;
  font-size: 13px;
  font-weight: 800;
}

.is-loading .loading-box {
  display: flex;
}

.spinner {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 3px solid #bddcf5;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #526177;
  background: var(--surface-soft);
  font-size: 11px;
  font-weight: 800;
}

.feature-tags-wide {
  margin-top: 18px;
}

.guide-list {
  display: grid;
  gap: 12px;
  margin-top: 19px;
}

.guide-item {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}

.guide-number {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 900;
}

.guide-item strong {
  font-size: 13px;
}

.guide-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  word-break: break-word;
}

.recent-panel {
  margin-top: 20px;
  padding: 26px;
}

.empty-state {
  padding: 22px;
  border: 1px dashed #b9cde2;
  border-radius: 17px;
  color: var(--muted);
  background: var(--surface-soft);
  text-align: center;
}

.tool-note {
  text-align: center;
}

/* =====================================================
   TOAST / FOOTER
   ===================================================== */

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  padding: 13px 15px;
  border-radius: 13px;
  color: white;
  background: #172238;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.18s ease;
  font-size: 13px;
  font-weight: 900;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 22px 0 28px;
  color: #7a8799;
  font-size: 12px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 960px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-stat-card {
    width: 220px;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .scrape-panel {
    grid-template-columns: 1fr;
  }

  .scrape-guide {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .tool-hero-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .footer-shell,
  .app-shell,
  .home-hero-inner,
  .tool-hero-inner {
    width: min(100% - 24px, 1220px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-link small {
    display: none;
  }

  .main-nav a:first-child {
    display: none;
  }

  .home-hero {
    padding: 48px 0 91px;
  }

  .home-hero h1 {
    font-size: 42px;
    letter-spacing: -1.7px;
  }

  .home-hero-copy {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

  .home-hero-logo {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .home-app-shell {
    margin-top: -44px;
  }

  .home-app-shell > .section-heading-row,
  .app-card,
  .scrape-main,
  .scrape-guide,
  .recent-panel,
  .result-summary-panel,
  .image-panel {
    padding: 20px;
  }

  .app-card {
    min-height: 300px;
  }

  .tool-hero {
    padding: 26px 0 67px;
  }

  .tool-title-line {
    align-items: flex-start;
  }

  .tool-title-line h1 {
    font-size: 25px;
  }

  .hero-badge {
    white-space: normal;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions,
  .result-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .form-actions .btn,
  .result-actions .btn {
    width: 100%;
  }

  .footer-shell {
    flex-direction: column;
    gap: 7px;
  }
}

/* =====================================================
   STARPARK MODERN DELUXE OVERRIDES
   Keep this section at the end of starpark.css
   ===================================================== */

:root {
  --bg: #edf2f7;
  --surface-soft: #f7f9fc;
  --text: #102033;
  --muted: #68788e;
  --line: #d7e1ec;
  --navy: #091f40;
  --blue: #176fc1;
  --blue-dark: #0b4f91;
  --blue-soft: #eaf4ff;

  --shadow:
    0 24px 68px rgba(18, 39, 68, 0.13),
    0 6px 18px rgba(18, 39, 68, 0.05);

  --shadow-soft:
    0 14px 34px rgba(18, 39, 68, 0.09),
    0 3px 10px rgba(18, 39, 68, 0.035);
}

html[data-theme="dark"] {
  --bg: #0e1412;
  --surface: #18201d;
  --surface-soft: #202a26;
  --text: #edf2ee;
  --muted: #9aa69f;
  --line: #35413b;
  --navy: #edf2ee;
  --blue: #7eb9ba;
  --blue-dark: #a8d2d1;
  --blue-soft: #1d3a39;
  --green: #75c7a2;
  --green-soft: #183a2d;
  --red: #e7877e;
  --red-soft: #3e2421;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.25);
  color-scheme: dark;
}

html[data-theme="dark"] body {
  background: radial-gradient(circle at 0 0, rgba(83, 155, 155, 0.12), transparent 30rem), var(--bg);
}

html[data-theme="dark"] .site-header {
  background: rgba(18, 25, 22, 0.94);
  border-bottom-color: rgba(237, 242, 238, 0.12);
}

html[data-theme="dark"] :is(.main-nav a, .brand-link small) {
  color: var(--muted);
}

html[data-theme="dark"] .main-nav a:hover,
html[data-theme="dark"] .main-nav a.active {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

html[data-theme="dark"] .brand-logo {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] :is(.site-footer, .app-card, .panel, .recent-panel, .result-summary-panel, .image-panel) {
  color: var(--text);
  background: var(--surface);
  border-color: var(--line);
}

html[data-theme="dark"] :is(input, textarea, select) {
  color: var(--text);
  background: var(--surface);
  border-color: var(--line);
}

html[data-theme="dark"] :is(input, textarea)::placeholder {
  color: #849088;
}

body {
  background:
    radial-gradient(
      circle at 0 0,
      rgba(35, 114, 191, 0.10),
      transparent 32rem
    ),
    radial-gradient(
      circle at 100% 20%,
      rgba(213, 168, 80, 0.06),
      transparent 27rem
    ),
    linear-gradient(
      180deg,
      #edf2f7 0%,
      #f7f9fc 48%,
      #edf2f7 100%
    );
}


/* =====================================================
   LARGE DELUXE HEADER
   ===================================================== */

.site-header {
  min-height: 92px;

  border-bottom:
    1px solid rgba(198, 212, 228, 0.86);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(247, 251, 255, 0.95)
    );

  box-shadow:
    0 11px 32px rgba(13, 32, 58, 0.09);

  backdrop-filter: blur(24px);
}

.nav-shell {
  min-height: 92px;
  gap: 30px;
}

.brand-link {
  gap: 14px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  flex-basis: 56px;

  border-radius: 17px;

  box-shadow:
    0 13px 28px rgba(16, 42, 84, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-link strong {
  color: #081526;

  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.brand-link small {
  font-size: 12px;
  font-weight: 650;
}

.main-nav {
  gap: 9px;
}

.main-nav a {
  position: relative;

  min-height: 48px;

  padding: 13px 17px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid transparent;
  border-radius: 15px;

  font-size: 14px;
  font-weight: 850;

  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;
  right: 16px;
  bottom: 7px;
  left: 16px;

  height: 2px;

  border-radius: 999px;

  background: currentColor;

  opacity: 0;

  transform: scaleX(0.45);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--blue-dark);

  border-color: #cfe0f1;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #edf6ff
    );

  box-shadow:
    0 9px 22px rgba(23, 111, 193, 0.09);

  transform: translateY(-1px);
}

.main-nav a.active {
  color: #ffffff;

  border-color: rgba(255, 255, 255, 0.12);

  background:
    linear-gradient(
      135deg,
      #081f40 0%,
      #0d4f8f 58%,
      #1974c8 100%
    );

  box-shadow:
    0 11px 27px rgba(13, 78, 143, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 0.55;
  transform: scaleX(1);
}


/* =====================================================
   HOME HERO
   ===================================================== */

.home-hero {
  position: relative;
  overflow: hidden;

  padding: 92px 0 138px;

  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(88, 198, 255, 0.44),
      transparent 25rem
    ),
    radial-gradient(
      circle at 12% 116%,
      rgba(213, 168, 80, 0.20),
      transparent 23rem
    ),
    linear-gradient(
      130deg,
      #06172f 0%,
      #0c3b70 48%,
      #176fc1 100%
    );
}

.home-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.08),
      transparent 36%,
      transparent 72%,
      rgba(255, 255, 255, 0.04)
    );
}

.home-hero::after {
  content: "";

  position: absolute;
  top: -190px;
  right: -135px;

  width: 440px;
  height: 440px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;

  box-shadow:
    0 0 0 56px rgba(255, 255, 255, 0.025),
    0 0 0 112px rgba(255, 255, 255, 0.016);

  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 2;

  grid-template-columns:
    minmax(0, 1fr)
    255px;

  gap: 72px;
}

.home-hero-copy {
  grid-template-columns:
    130px
    minmax(0, 1fr);

  gap: 31px;
}

.home-hero-logo {
  width: 130px;
  height: 130px;

  border-radius: 33px;

  box-shadow:
    0 25px 58px rgba(4, 22, 51, 0.31),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-hero h1 {
  max-width: 780px;

  font-size: clamp(43px, 5.9vw, 74px);
  line-height: 0.99;
  letter-spacing: -3.1px;
}

.home-hero p {
  max-width: 700px;

  font-size: 18px;
  line-height: 1.68;
}

.hero-stat-card {
  padding: 28px;

  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.08)
    );

  box-shadow:
    0 25px 58px rgba(4, 22, 51, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.17);

  backdrop-filter: blur(16px);
}

.hero-stat-card strong {
  font-size: 64px;
}

.hero-description-slider {
  position: relative;
  max-width: 650px;
  min-height: 58px;
  overflow: hidden;
}

.hero-description-link {
  position: absolute;
  inset: 0;
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 17px;
  line-height: 1.65;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.hero-description-link.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-description-link:hover {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-decoration-color: white;
  text-underline-offset: 4px;
}

/* =====================================================
   HOME APPLICATION CARDS
   ===================================================== */

.home-app-shell {
  position: relative;
  z-index: 10;

  margin-top: -68px;
  padding-bottom: 66px;
}

.home-app-shell > .section-heading-row {
  padding: 29px 31px;

  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 250, 254, 0.98)
    );

  box-shadow:
    0 31px 82px rgba(20, 42, 72, 0.14),
    0 8px 24px rgba(20, 42, 72, 0.06);
}

.app-grid {
  gap: 23px;
}

.app-card {
  position: relative;

  min-height: 355px;

  padding: 30px;

  overflow: hidden;

  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f8fbfe
    );

  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.app-card::before {
  content: "";

  position: absolute;
  inset: 0 24px auto;

  width: auto;
  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      #0b4f91,
      #41a1e5,
      transparent
    );
}

.app-card::after {
  content: "";

  position: absolute;
  top: -84px;
  right: -58px;

  width: 200px;
  height: 200px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(23, 111, 193, 0.11),
      transparent 70%
    );

  pointer-events: none;
}

.app-card-live:hover {
  transform: translateY(-7px);

  border-color: #b8d6ef;

  box-shadow:
    0 30px 68px rgba(24, 45, 77, 0.17),
    0 8px 22px rgba(24, 45, 77, 0.07);
}

.app-card-future::before {
  background:
    linear-gradient(
      to bottom,
      #9ba7b7,
      #d1d9e2
    );
}

.app-icon {
  width: 62px;
  height: 62px;

  border-radius: 20px;

  font-size: 30px;

  box-shadow:
    0 13px 28px rgba(16, 42, 84, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.app-icon-download {
  background:
    linear-gradient(
      135deg,
      #d9560e,
      #f48724 60%,
      #ffaf43
    );
}

.app-icon-price {
  background:
    linear-gradient(
      135deg,
      #086f65,
      #18a490 58%,
      #38c6b0
    );
}

.app-card h3 {
  font-size: 26px;
  letter-spacing: -0.7px;
}


/* =====================================================
   SHARED TOOL PAGES
   ===================================================== */

.tool-hero {
  padding: 42px 0 92px;

  border-radius: 0 0 40px 40px;

  box-shadow:
    0 25px 64px rgba(14, 56, 103, 0.18);
}

.tool-title-line {
  gap: 19px;
}

.tool-icon {
  width: 64px;
  height: 64px;

  flex-basis: 64px;

  border-radius: 21px;

  font-size: 30px;

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.tool-title-line h1 {
  font-size: clamp(30px, 3vw, 40px);
  letter-spacing: -1.1px;
}

.tool-title-line p {
  font-size: 15px;
  line-height: 1.58;
}

.hero-badge {
  padding: 13px 16px;

  box-shadow:
    0 11px 28px rgba(0, 0, 0, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);

  backdrop-filter: blur(13px);
}

.tool-content-shell {
  position: relative;
  z-index: 10;

  margin-top: -57px;

  overflow: visible;
}

.panel {
  border-radius: 29px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(248, 251, 255, 0.98)
    );

  box-shadow:
    0 25px 70px rgba(18, 39, 68, 0.13),
    0 6px 18px rgba(18, 39, 68, 0.05);
}

.scrape-panel {
  position: relative;
  z-index: 2;

  grid-template-columns:
    minmax(0, 1.45fr)
    390px;

  border-radius: 31px;
}

.scrape-main,
.scrape-guide {
  padding: 34px;
}

.form-grid {
  grid-template-columns:
    245px
    minmax(0, 1fr);

  gap: 16px;

  margin-top: 25px;
}

.field-group input {
  min-height: 55px;

  padding: 15px 16px;

  border-radius: 16px;
}

.btn {
  min-height: 46px;

  padding: 12px 17px;

  border-radius: 14px;
}

.guide-item {
  padding: 16px;

  border-radius: 17px;

  box-shadow:
    0 8px 22px rgba(24, 45, 77, 0.05);
}

.recent-panel {
  padding: 29px;

  border-radius: 29px;
}


/* =====================================================
   FOOTER / TOAST
   ===================================================== */

.toast {
  right: 23px;
  bottom: 23px;

  padding: 14px 17px;

  border-radius: 15px;

  background:
    linear-gradient(
      135deg,
      #111f34,
      #273a55
    );

  box-shadow:
    0 19px 42px rgba(0, 0, 0, 0.26);
}

.site-footer {
  padding: 30px 0 36px;
}

.footer-shell {
  padding-top: 23px;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1000px) {
  .scrape-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .nav-shell {
    min-height: 80px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;

    border-radius: 15px;
  }

  .brand-link strong {
    font-size: 16px;
  }

  .main-nav a {
    min-height: 41px;

    padding: 10px 11px;

    font-size: 12px;
  }

  .home-hero {
    padding: 60px 0 105px;
  }

  .home-hero-copy {
    grid-template-columns:
      84px
      minmax(0, 1fr);

    gap: 18px;
  }

  .home-hero-logo {
    width: 84px;
    height: 84px;

    border-radius: 22px;
  }

  .home-hero h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }

  .home-app-shell {
    margin-top: -50px;
  }

  .app-card {
    min-height: 315px;

    border-radius: 25px;
  }

  .tool-hero {
    padding: 32px 0 77px;

    border-radius: 0 0 31px 31px;
  }

  .tool-icon {
    width: 56px;
    height: 56px;

    flex-basis: 56px;

    border-radius: 18px;
  }

  .tool-title-line h1 {
    font-size: 28px;
  }

  .scrape-main,
  .scrape-guide {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-link > span:last-child {
    display: none;
  }

  .main-nav a {
    padding: 9px 10px;

    font-size: 11px;
  }

  .home-hero-copy {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: 39px;
  }
}

/* =====================================================
   PAGE-SPECIFIC HEADER COLOURS
   ===================================================== */

.site-header::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;

  height: 3px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(23, 111, 193, 0.72),
      transparent
    );

  opacity: 0.8;
  pointer-events: none;
}

.home-page .site-header::after {
  background:
    linear-gradient(
      90deg,
      transparent,
      #176fc1,
      transparent
    );
}

.neshome-scraper-page .site-header::after {
  background:
    linear-gradient(
      90deg,
      transparent,
      #f47b20,
      transparent
    );
}

.competitor-checker-page .site-header::after {
  background:
    linear-gradient(
      90deg,
      transparent,
      #18a490,
      transparent
    );
}


/* =====================================================
   HEADER NAVIGATION COLOUR THEMES
   ===================================================== */

.main-nav a.active::after {
  opacity: 0.75;
  transform: scaleX(1);
}


/* Apps â€” blue */

.main-nav .nav-apps:hover {
  color: #0b4f91;
  border-color: #c6dcf1;
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #eaf4ff
    );
}

.main-nav .nav-apps.active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(
      135deg,
      #09274f 0%,
      #0d579c 58%,
      #1977cb 100%
    );
  box-shadow:
    0 11px 27px rgba(13, 87, 156, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}


/* Neshome â€” orange */

.main-nav .nav-neshome:hover {
  color: #b84a08;
  border-color: #f1cfb5;
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #fff0e3
    );
}

.main-nav .nav-neshome.active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(
      135deg,
      #b94708 0%,
      #e96916 56%,
      #f8992f 100%
    );
  box-shadow:
    0 11px 27px rgba(218, 89, 15, 0.31),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}


/* Kartell â€” green */

.main-nav .nav-competitor:hover {
  color: #08766b;
  border-color: #bfe1da;
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #e8f8f5
    );
}

.main-nav .nav-competitor.active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(
      135deg,
      #07675e 0%,
      #119681 56%,
      #29b7a2 100%
    );
  box-shadow:
    0 11px 27px rgba(17, 150, 129, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Stock — Red */

.main-nav .nav-stock:hover {
  color: #b72d12;
  border-color: #f0c2b8;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      var(--stock-cream)
    );
}

.main-nav .nav-stock.active {
  color: #ffffff;

  border-color:
    rgba(255, 255, 255, 0.16);

  background:
    linear-gradient(
      135deg,
      var(--stock-dark) 0%,
      #8f2414 52%,
      var(--stock-red) 100%
    );

  box-shadow:
    0 11px 27px rgba(238, 67, 29, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* SKU Finder â€” violet */

.main-nav .nav-sku-finder:hover {
  color: #580000;
  border-color: #d9bbbb;
  background: linear-gradient(180deg, #ffffff, #fff1f0);
}

.main-nav .nav-sku-finder.active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #300000 0%, #580000 56%, #812323 100%);
  box-shadow:
    0 11px 27px rgba(88, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}



/* =====================================================
   APPLICATION CARD COLOUR IDENTITIES
   ===================================================== */

.app-card-neshome::before {
  background:
    linear-gradient(
      to bottom,
      #d5530d,
      #f17a21,
      #ffad43
    );
}

.app-card-neshome::after {
  background:
    radial-gradient(
      circle,
      rgba(244, 123, 32, 0.14),
      transparent 70%
    );
}

.app-card-neshome:hover {
  border-color: #efbd97;
}

.app-card-neshome .app-card-action {
  color: #bc4a08;
}


.app-card-competitor::before {
  background:
    linear-gradient(
      to bottom,
      #08766b,
      #18a490,
      #3bc8b2
    );
}

.app-card-competitor::after {
  background:
    radial-gradient(
      circle,
      rgba(24, 164, 144, 0.14),
      transparent 70%
    );
}

.app-card-competitor:hover {
  border-color: #9fd4cb;
}

.app-card-competitor .app-card-action {
  color: #08766b;
}


/* =====================================================
   DELUXE APPLICATION ICONS
   ===================================================== */

.app-icon {
  position: relative;
  overflow: hidden;
}

.app-icon::after {
  content: "";

  position: absolute;
  top: -24px;
  right: -24px;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.30),
      transparent 68%
    );

  pointer-events: none;
}

.app-icon svg {
  position: relative;
  z-index: 2;

  width: 34px;
  height: 34px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-icon-download {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #d84f08 0%,
      #f2761d 54%,
      #ffa333 100%
    );

  box-shadow:
    0 14px 31px rgba(218, 79, 8, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.app-icon-price {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #07675e 0%,
      #159b88 56%,
      #36c4ae 100%
    );

  box-shadow:
    0 14px 31px rgba(13, 139, 121, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}


/* =====================================================
   MOBILE HEADER COLOURS
   ===================================================== */

@media (max-width: 760px) {
  .main-nav a {
    border-radius: 12px;
  }

  .main-nav .nav-apps.active,
  .main-nav .nav-neshome.active,
  .main-nav .nav-competitor.active {
    box-shadow:
      0 7px 17px rgba(15, 35, 61, 0.18);
  }
}


/* =========================
   STOCK GUARD APP ICON
   ========================= */

.app-icon-stock {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #8f2414 0%,
      #ee431d 58%,
      #fc9985 100%
    );

  box-shadow:
    0 14px 31px rgba(238, 67, 29, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.stock-app-icon-svg {
  width: 35px;
  height: 35px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stock-icon-box {
  transform-box: fill-box;
  transform-origin: center;
}

.stock-icon-lid {
  transform-box: fill-box;
  transform-origin: center bottom;
}

.stock-icon-line,
.stock-icon-check {
  stroke-dasharray: 30;
  stroke-dashoffset: 0;
}

.app-card:hover .stock-icon-box {
  animation:
    stockIconBoxPulse 700ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}

.app-card:hover .stock-icon-lid {
  animation:
    stockIconLidLift 700ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}

.app-card:hover .stock-icon-line-one {
  animation:
    stockIconLineDraw 520ms 90ms
    ease both;
}

.app-card:hover .stock-icon-line-two {
  animation:
    stockIconLineDraw 520ms 150ms
    ease both;
}

.app-card:hover .stock-icon-check {
  animation:
    stockIconCheckDraw 560ms 220ms
    ease both;
}

@keyframes stockIconBoxPulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.94);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes stockIconLidLift {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes stockIconLineDraw {
  from {
    stroke-dashoffset: 30;
    opacity: 0.25;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes stockIconCheckDraw {
  from {
    stroke-dashoffset: 30;
    opacity: 0;
    transform: scale(0.82);
    transform-origin: center;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 1;
    transform: scale(1);
  }
}

/* Stock Guard card identity */

.app-card-stock::before {
  background:
    linear-gradient(
      to bottom,
      #8f2414,
      #ee431d,
      #fc9985
    );
}

.app-card-stock::after {
  background:
    radial-gradient(
      circle,
      rgba(238, 67, 29, 0.14),
      transparent 70%
    );
}

.app-card-stock:hover {
  border-color: #efb2a5;
}

.app-card-stock .app-card-action {
  color: #b52d14;
}


/* Stock inventory/report icon */

/* Stock inventory/report icon */

.app-icon-stock {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(255, 255, 255, 0.32),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #a82916 0%,
      #ee431d 52%,
      #fc816b 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.22);

  box-shadow:
    0 5px 0 #8d2112,
    0 16px 30px rgba(238, 67, 29, 0.3),
    inset 0 2px 1px rgba(255, 255, 255, 0.42),
    inset 0 -5px 10px rgba(98, 18, 7, 0.24);

  transform:
    perspective(500px)
    rotateX(0deg)
    rotateY(0deg)
    translateY(0);

  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease,
    filter 420ms ease;
}


/* Permanent glass highlight */

.app-icon-stock::before {
  content: "";

  position: absolute;
  top: -45%;
  left: -70%;
  z-index: 1;

  width: 65%;
  height: 190%;

  pointer-events: none;

  background:
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 32%,
      rgba(255, 255, 255, 0.6) 48%,
      rgba(255, 255, 255, 0.14) 62%,
      transparent 100%
    );

  transform: rotate(14deg);
  opacity: 0;
}


/* Top curved shine */

.app-icon-stock::after {
  content: "";

  position: absolute;
  top: 5px;
  left: 10%;
  right: 10%;
  z-index: 1;

  height: 34%;

  pointer-events: none;

  border-radius: 999px 999px 45% 45%;

  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.08),
      transparent
    );

  opacity: 0.55;
}

.app-icon-stock .stock-app-icon-svg {
  position: relative;
  z-index: 3;

  width: 36px;
  height: 36px;
  display: block;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.45))
    drop-shadow(0 3px 4px rgba(91, 18, 8, 0.28));

  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.app-card-stock:hover .app-icon-stock {
  transform:
    perspective(500px)
    rotateX(7deg)
    rotateY(-7deg)
    translateY(-7px)
    scale(1.07);

  filter:
    saturate(1.12)
    brightness(1.06);

  box-shadow:
    7px 9px 0 #7e1c0e,
    0 25px 38px rgba(238, 67, 29, 0.4),
    inset 0 3px 2px rgba(255, 255, 255, 0.5),
    inset 0 -7px 13px rgba(89, 15, 6, 0.3);
}

.app-card-stock:hover .app-icon-stock::before {
  animation:
    stockIconReflectionSweep
    850ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}

.app-card-stock:hover
.app-icon-stock
.stock-app-icon-svg {
  transform:
    translateY(-1px)
    scale(1.05);

  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.65))
    drop-shadow(0 5px 6px rgba(74, 10, 4, 0.38));
}
/* Hover animation */

.app-card-stock:hover .stock-icon-box {
  animation:
    stockIconBoxPulse 650ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}

.app-card-stock:hover .stock-icon-lid {
  animation:
    stockIconLidLift 650ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}

.app-card-stock:hover .stock-icon-line-one {
  animation: stockIconLineMove 500ms 80ms ease both;
}

.app-card-stock:hover .stock-icon-line-two {
  animation: stockIconLineMove 500ms 140ms ease both;
}

.app-card-stock:hover .stock-icon-check {
  animation: stockIconCheckPop 500ms 190ms ease both;
}

@keyframes stockIconBoxPulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.94);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes stockIconLidLift {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes stockIconLineMove {
  from {
    opacity: 0.3;
    transform: translateX(-3px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes stockIconCheckPop {
  0% {
    opacity: 0;
    transform: scale(0.55);
    transform-origin: center;
  }

  70% {
    opacity: 1;
    transform: scale(1.18);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* =====================================================
   COMPETITOR ICON — 3D HOVER EFFECT
   Add this at the VERY BOTTOM of starpark.css
   ===================================================== */

.app-card-kartell::before {
  background:
    linear-gradient(
      to bottom,
      #07675e,
      #159b88,
      #36c4ae
    );
}

.app-card-kartell::after {
  background:
    radial-gradient(
      circle,
      rgba(24, 164, 144, 0.14),
      transparent 70%
    );
}

.app-card-kartell:hover {
  border-color: #9fd4cb;
}

.app-card-kartell .app-card-action {
  color: #08766b;
}


/* Competitor icon container */

.app-card-kartell .app-icon-price {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(255, 255, 255, 0.32),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #07675e 0%,
      #159b88 52%,
      #36c4ae 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.22);

  box-shadow:
    0 5px 0 #05544d,
    0 16px 30px rgba(13, 139, 121, 0.30),
    inset 0 2px 1px rgba(255, 255, 255, 0.42),
    inset 0 -5px 10px rgba(3, 72, 64, 0.27);

  transform:
    perspective(500px)
    rotateX(0deg)
    rotateY(0deg)
    translateY(0);

  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease,
    filter 420ms ease;
}


/* Moving glass reflection */

.app-card-kartell .app-icon-price::before {
  content: "";

  position: absolute;
  top: -45%;
  left: -70%;
  z-index: 4;

  width: 65%;
  height: 190%;

  pointer-events: none;

  background:
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 32%,
      rgba(255, 255, 255, 0.60) 48%,
      rgba(255, 255, 255, 0.14) 62%,
      transparent 100%
    );

  transform: rotate(14deg);
  opacity: 0;
}


/* Permanent top shine */

.app-card-kartell .app-icon-price::after {
  content: "";

  position: absolute;
  top: 5px;
  right: 10%;
  left: 10%;
  z-index: 1;

  height: 34%;

  pointer-events: none;

  border-radius: 999px 999px 45% 45%;

  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.08),
      transparent
    );

  opacity: 0.55;
}


/* Both competitor SVG logos */

.app-card-kartell .competitor-logo {
  position: absolute;
  z-index: 3;

  width: 38px;
  height: 38px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.45))
    drop-shadow(0 3px 4px rgba(3, 72, 64, 0.32));

  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}


/* The price tag shape needs a light transparent fill */

.app-card-kartell .competitor-logo-default > path:first-child {
  fill: rgba(255, 255, 255, 0.10);
}


/* Default and hover logo states */

.app-card-kartell .competitor-logo-default {
  opacity: 1;
  transform:
    translateY(0)
    scale(1)
    rotate(0deg);
}

.app-card-kartell .competitor-logo-hover {
  opacity: 0;
  transform:
    translateY(5px)
    scale(0.78);
}


/* Main 3D hover */

.app-card-kartell:hover .app-icon-price {
  transform:
    perspective(500px)
    rotateX(7deg)
    rotateY(-7deg)
    translateY(-7px)
    scale(1.07);

  filter:
    saturate(1.12)
    brightness(1.06);

  box-shadow:
    7px 9px 0 #044a43,
    0 25px 38px rgba(13, 139, 121, 0.42),
    inset 0 3px 2px rgba(255, 255, 255, 0.50),
    inset 0 -7px 13px rgba(2, 61, 55, 0.32);
}


/* Reflection sweep */

.app-card-kartell:hover .app-icon-price::before {
  animation:
    competitorIconReflectionSweep
    850ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}


/* Swap price tag to comparison icon */

.app-card-kartell:hover .competitor-logo-default {
  opacity: 0;

  transform:
    translateY(-5px)
    scale(0.78)
    rotate(-7deg);
}

.app-card-kartell:hover .competitor-logo-hover {
  opacity: 1;

  transform:
    translateY(-1px)
    scale(1.04);

  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.65))
    drop-shadow(0 5px 6px rgba(2, 55, 49, 0.42));
}


/* Animate the comparison arrows */

.app-card-kartell:hover
.competitor-logo-hover
path:nth-of-type(3) {
  animation:
    competitorArrowRight
    650ms 100ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}

.app-card-kartell:hover
.competitor-logo-hover
path:nth-of-type(5) {
  animation:
    competitorArrowLeft
    650ms 160ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}


/* Reflection animation */

@keyframes competitorIconReflectionSweep {
  0% {
    left: -70%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    left: 125%;
    opacity: 0;
  }
}


/* Arrow animations */

@keyframes competitorArrowRight {
  0% {
    opacity: 0.3;
    transform: translateX(-4px);
  }

  70% {
    opacity: 1;
    transform: translateX(2px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes competitorArrowLeft {
  0% {
    opacity: 0.3;
    transform: translateX(4px);
  }

  70% {
    opacity: 1;
    transform: translateX(-2px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =====================================================
   NESHOME PRODUCT SCRAPER ICON — 3D HOVER EFFECT
   Add this at the VERY BOTTOM of starpark.css
   ===================================================== */

.app-card-neshome .app-icon-download {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(255, 255, 255, 0.34),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #c94806 0%,
      #f2761d 52%,
      #ffa333 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.22);

  box-shadow:
    0 5px 0 #a73a04,
    0 16px 30px rgba(218, 79, 8, 0.32),
    inset 0 2px 1px rgba(255, 255, 255, 0.42),
    inset 0 -5px 10px rgba(117, 35, 2, 0.27);

  transform:
    perspective(500px)
    rotateX(0deg)
    rotateY(0deg)
    translateY(0);

  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease,
    filter 420ms ease;
}


/* Moving reflection */

.app-card-neshome .app-icon-download::before {
  content: "";

  position: absolute;
  top: -45%;
  left: -70%;
  z-index: 4;

  width: 65%;
  height: 190%;

  pointer-events: none;

  background:
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 32%,
      rgba(255, 255, 255, 0.62) 48%,
      rgba(255, 255, 255, 0.14) 62%,
      transparent 100%
    );

  transform: rotate(14deg);
  opacity: 0;
}


/* Permanent curved shine */

.app-card-neshome .app-icon-download::after {
  content: "";

  position: absolute;
  top: 5px;
  right: 10%;
  left: 10%;
  z-index: 1;

  height: 34%;

  pointer-events: none;

  border-radius: 999px 999px 45% 45%;

  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.44),
      rgba(255, 255, 255, 0.08),
      transparent
    );

  opacity: 0.58;
}


/* Neshome SVG */

.app-card-neshome .app-icon-download svg {
  position: relative;
  z-index: 3;

  width: 36px;
  height: 36px;
  display: block;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.48))
    drop-shadow(0 3px 4px rgba(101, 28, 2, 0.32));

  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}


/* Prepare individual SVG parts */

.app-card-neshome .app-icon-download svg rect {
  transform-box: fill-box;
  transform-origin: center;
}

.app-card-neshome .app-icon-download svg circle {
  transform-box: fill-box;
  transform-origin: center;
}

.app-card-neshome .app-icon-download svg path {
  transform-box: fill-box;
  transform-origin: center;
}


/* Main 3D hover */

.app-card-neshome:hover .app-icon-download {
  transform:
    perspective(500px)
    rotateX(7deg)
    rotateY(-7deg)
    translateY(-7px)
    scale(1.07);

  filter:
    saturate(1.12)
    brightness(1.06);

  box-shadow:
    7px 9px 0 #963301,
    0 25px 38px rgba(218, 79, 8, 0.43),
    inset 0 3px 2px rgba(255, 255, 255, 0.52),
    inset 0 -7px 13px rgba(103, 27, 1, 0.32);
}


/* Reflection sweep */

.app-card-neshome:hover .app-icon-download::before {
  animation:
    neshomeIconReflectionSweep
    850ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}


/* Lift the entire SVG slightly */

.app-card-neshome:hover .app-icon-download svg {
  transform:
    translateY(-1px)
    scale(1.05);

  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.68))
    drop-shadow(0 5px 6px rgba(83, 20, 0, 0.42));
}


/* Image frame pulse */

.app-card-neshome:hover
.app-icon-download
svg rect {
  animation:
    neshomeImageFramePulse
    650ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}


/* Small image circle pop */

.app-card-neshome:hover
.app-icon-download
svg circle {
  animation:
    neshomeImageCirclePop
    520ms 80ms
    ease both;
}


/* Landscape image line movement */

.app-card-neshome:hover
.app-icon-download
svg path:nth-of-type(1) {
  animation:
    neshomeImageLineMove
    550ms 100ms
    ease both;
}


/* Download vertical arrow line */

.app-card-neshome:hover
.app-icon-download
svg path:nth-of-type(2) {
  animation:
    neshomeDownloadMove
    600ms 130ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}


/* Download arrow head */

.app-card-neshome:hover
.app-icon-download
svg path:nth-of-type(3) {
  animation:
    neshomeDownloadArrow
    600ms 170ms
    cubic-bezier(0.22, 1, 0.36, 1)
    both;
}


/* Reflection animation */

@keyframes neshomeIconReflectionSweep {
  0% {
    left: -70%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    left: 125%;
    opacity: 0;
  }
}


/* Frame pulse */

@keyframes neshomeImageFramePulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.94);
  }

  100% {
    transform: scale(1);
  }
}


/* Circle pop */

@keyframes neshomeImageCirclePop {
  0% {
    opacity: 0.4;
    transform: scale(0.55);
  }

  70% {
    opacity: 1;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* Landscape line slide */

@keyframes neshomeImageLineMove {
  0% {
    opacity: 0.35;
    transform: translateX(-3px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Download line movement */

@keyframes neshomeDownloadMove {
  0% {
    opacity: 0.35;
    transform: translateY(-3px);
  }

  70% {
    opacity: 1;
    transform: translateY(2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Download arrow pop */

@keyframes neshomeDownloadArrow {
  0% {
    opacity: 0;
    transform: translateY(-3px) scale(0.7);
  }

  70% {
    opacity: 1;
    transform: translateY(2px) scale(1.12);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* =====================================================
   EDESK REMINDER HOME CARD
   ===================================================== */

.app-card-edesk::before {
  background: linear-gradient(to bottom, #5b21b6, #a78bfa);
}

.app-card-edesk::after {
  background:
    radial-gradient(
      circle,
      rgba(124, 58, 237, 0.13),
      transparent 70%
    );
}

.app-card-edesk:hover {
  border-color: #cfb8eb;
}

.app-card-edesk .app-card-action {
  color: #5b21b6;
}

/* =====================================================
   SKU INSIGHTS HOME CARD — maroon identity
   Matches the SKU Insights navigation pill instead of the old violet theme.
   ===================================================== */

.app-card-sku-finder::before {
  background: linear-gradient(to bottom, #4f0000, #650000, #812323);
}

.app-card-sku-finder::after {
  background: radial-gradient(circle, rgba(88, 0, 0, 0.15), transparent 70%);
}

.app-card-sku-finder:hover {
  border-color: #d9bbbb;
}

.app-card-sku-finder .app-card-action {
  color: #580000;
}

.app-icon-sku-finder {
  color: #fff;
  background: linear-gradient(135deg, #300000, #580000 58%, #812323);
}

.app-icon-sku-finder svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.24s ease;
}

.app-card-sku-finder:hover .app-icon-sku-finder svg {
  transform: scale(1.08);
}

.app-icon-edesk {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #40106f,
      #6d28d9 58%,
      #a78bfa
    );
}

.app-icon-edesk::before {
  content: "";
  position: absolute;
  inset: -50% auto auto -65%;
  width: 120%;
  height: 220%;
  transform: rotate(24deg);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.22),
      transparent
    );
  transition: left 0.55s ease;
}

.app-card-edesk:hover .app-icon-edesk::before {
  left: 115%;
}

.app-icon-edesk svg {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.24s ease;
}

.app-icon-edesk svg circle {
  fill: #6d28d9;
  stroke: #ffffff;
}

.app-card-edesk:hover .app-icon-edesk svg {
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 840px) {
  .nav-shell {
    overflow: hidden;
  }

  .main-nav {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-end;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
  }
}

/* =====================================================
   EDESK HOME ICON — FULL 3D HOVER EFFECT
   ===================================================== */

.app-card-edesk .app-icon-edesk {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(145deg, #4c1d95 0%, #6d28d9 52%, #a78bfa 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 5px 0 #35106e,
    0 16px 30px rgba(76, 29, 149, 0.3),
    inset 0 2px 1px rgba(255, 255, 255, 0.42),
    inset 0 -5px 10px rgba(31, 8, 69, 0.28);
  transform: perspective(500px) rotateX(0) rotateY(0) translateY(0);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease,
    filter 420ms ease;
}

.app-card-edesk .app-icon-edesk::before {
  content: "";
  position: absolute;
  top: -45%;
  left: -70%;
  z-index: 4;
  width: 65%;
  height: 190%;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 32%,
    rgba(255, 255, 255, 0.68) 48%,
    rgba(255, 255, 255, 0.14) 62%,
    transparent 100%
  );
  transform: rotate(14deg);
  opacity: 0;
}

.app-card-edesk .app-icon-edesk::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 10%;
  left: 10%;
  z-index: 1;
  height: 34%;
  pointer-events: none;
  border-radius: 999px 999px 45% 45%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.48),
    rgba(255, 255, 255, 0.08),
    transparent
  );
  opacity: 0.58;
}

.app-card-edesk .app-icon-edesk svg {
  position: relative;
  z-index: 3;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.55))
    drop-shadow(0 3px 4px rgba(32, 8, 69, 0.38));
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.app-card-edesk .app-icon-edesk svg path,
.app-card-edesk .app-icon-edesk svg circle {
  transform-box: fill-box;
  transform-origin: center;
}

.app-card-edesk:hover .app-icon-edesk {
  transform:
    perspective(500px)
    rotateX(7deg)
    rotateY(-7deg)
    translateY(-7px)
    scale(1.07);
  filter: saturate(1.12) brightness(1.06);
  box-shadow:
    7px 9px 0 #2f0d64,
    0 25px 38px rgba(76, 29, 149, 0.42),
    inset 0 3px 2px rgba(255, 255, 255, 0.52),
    inset 0 -7px 13px rgba(28, 5, 64, 0.34);
}

.app-card-edesk:hover .app-icon-edesk::before {
  animation: edeskHomeReflectionSweep 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.app-card-edesk:hover .app-icon-edesk svg {
  transform: translateY(-1px) scale(1.05);
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.7))
    drop-shadow(0 5px 6px rgba(31, 6, 68, 0.46));
}

.app-card-edesk:hover .edesk-icon-bubble {
  animation: edeskHomeBubblePulse 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.app-card-edesk:hover .edesk-icon-line-one {
  animation: edeskHomeLineSlide 520ms 70ms ease both;
}

.app-card-edesk:hover .edesk-icon-line-two {
  animation: edeskHomeLineSlide 520ms 130ms ease both;
}

.app-card-edesk:hover .edesk-icon-clock {
  animation: edeskHomeClockPop 520ms 90ms ease both;
}

.app-card-edesk:hover .edesk-icon-hand {
  animation: edeskHomeHandTick 620ms 120ms ease both;
}

@keyframes edeskHomeReflectionSweep {
  0% { left: -70%; opacity: 0; }
  20% { opacity: 1; }
  100% { left: 125%; opacity: 0; }
}

@keyframes edeskHomeBubblePulse {
  0% { transform: scale(1); }
  45% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

@keyframes edeskHomeLineSlide {
  0% { opacity: 0.35; transform: translateX(-3px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes edeskHomeClockPop {
  0% { opacity: 0.45; transform: scale(0.65); }
  70% { opacity: 1; transform: scale(1.18); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes edeskHomeHandTick {
  0% { transform: rotate(-28deg); }
  70% { transform: rotate(12deg); }
  100% { transform: rotate(0); }
}

/* =====================================================
   PERSISTENT MULTI-APP WORKSPACE
   ===================================================== */

html.starpark-workspace-open,
body.starpark-workspace-open {
  overflow: hidden !important;
}

.starpark-workspace {
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow: hidden;
  background: #ffffff;
}

.starpark-workspace[hidden] {
  display: none !important;
}

.starpark-workspace-frames,
.starpark-workspace-frame {
  width: 100%;
  height: 100%;
}

.starpark-workspace-frames {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.starpark-workspace-frame {
  position: absolute;
  inset: 0;
  display: none;
  border: 0;
  background: #ffffff;
}

.starpark-workspace-frame.is-active {
  display: block;
}

.starpark-workspace-frame[hidden] {
  display: none !important;
}

/* All app heroes use exactly the same top-link height and spacing. */
.back-link.app-switcher-back-link {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 20px !important;
  margin: 0 0 26px !important;
  padding: 0 !important;
  line-height: 20px !important;
  vertical-align: top !important;
}

@media (min-width: 721px) {
  .neshome-scraper-page:not(.neshome-result-page)
  .neshome-dashboard-hero,
  .competitor-checker-page .competitor-hero,
  .edesk-reminder-page .edesk-dashboard-hero,
  .stock-page .stock-hero {
    padding-top: 24px !important;
  }
}

/* Company System owns global navigation when a tool is embedded. */
html.embedded-shell,
html.embedded-shell body {
  min-height: 100%;
  background: #ffffff;
}

html.embedded-shell .site-header,
html.embedded-shell .site-footer,
html.embedded-shell .back-link.app-switcher-back-link {
  display: none !important;
}
