:root {
  --navy: #05255f;
  --navy-dark: #031947;
  --blue: #0a72ff;
  --blue-deep: #0756c9;
  --silver: #b7bcc4;
  --silver-soft: #edf0f4;
  --ink: #111827;
  --muted: #647084;
  --white: #ffffff;
  --line: #dfe4ec;
  --shadow: 0 24px 60px rgba(5, 37, 95, 0.13);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 37, 95, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(5, 37, 95, 0.025) 1px, transparent 1px),
    #ffffff;
  background-size: 54px 54px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: calc(var(--max) + 64px);
  margin: 18px auto 0;
  padding: 14px 22px;
  border: 1px solid rgba(223, 228, 236, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(5, 37, 95, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  width: 142px;
  min-width: 142px;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 999px;
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 54px;
  min-height: 720px;
  padding: 92px 0 70px;
}

.hero-copy h1,
.page-hero h1,
.nova-hero h1,
.contact-hero h1 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2.5rem, 6vw, 5.9rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.hero-text,
.page-hero p,
.nova-hero p,
.contact-hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(10, 114, 255, 0.26);
}

.btn-primary:hover {
  background: var(--blue-deep);
}

.btn-outline {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--navy);
  box-shadow: 0 14px 34px rgba(5, 37, 95, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.brand-card {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 40px;
  border: 1px solid rgba(183, 188, 196, 0.7);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.brand-card::before,
.brand-card::after {
  content: "";
  position: absolute;
  border-radius: 28px;
  z-index: -1;
}

.brand-card::before {
  inset: 18px -18px -18px 18px;
  background: var(--navy);
}

.brand-card::after {
  width: 120px;
  height: 120px;
  right: -34px;
  top: 44px;
  background: var(--silver);
  clip-path: polygon(0 0, 100% 24%, 100% 100%, 18% 78%);
}

.brand-card img {
  width: 94%;
}

.sub-brand-chip {
  position: absolute;
  z-index: 3;
  left: 4px;
  bottom: 28px;
  width: 230px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(5, 37, 95, 0.14);
}

.sub-brand-chip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.geo {
  position: absolute;
  z-index: 1;
}

.geo-one {
  width: 96px;
  height: 96px;
  right: 18px;
  bottom: 76px;
  border: 18px solid var(--blue);
  transform: rotate(45deg);
}

.geo-two {
  width: 74px;
  height: 160px;
  left: 22px;
  top: 60px;
  background: var(--silver);
  clip-path: polygon(0 0, 100% 18%, 100% 100%, 0 82%);
}

.split-section,
.products-preview,
.why-section,
.brand-system,
.filter-section,
.menu-map,
.sitemap-section,
.nova-columns,
.contact-layout {
  padding: 78px 0;
}

.section-heading,
.section-top {
  margin-bottom: 34px;
}

.section-heading h2,
.section-top h2,
.brand-system-card h2,
.cta-section h2,
.sitemap-section h2,
.contact-card h2,
.contact-aside h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--blue);
  font-weight: 850;
}

.text-link:hover {
  color: var(--navy);
}

.feature-grid,
.product-grid,
.why-grid,
.catalog-grid,
.sitemap-grid,
.nova-columns {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.product-card,
.catalog-card,
.why-grid article,
.sitemap-grid div,
.nova-columns article,
.contact-card,
.contact-aside,
.contact-form,
.menu-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(5, 37, 95, 0.07);
}

.feature-card,
.product-card,
.catalog-card,
.why-grid article,
.sitemap-grid div,
.nova-columns article,
.contact-card,
.contact-aside,
.menu-panel {
  padding: 28px;
}

.feature-card::before,
.product-card::before,
.catalog-card::before,
.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--blue);
}

.feature-card h3,
.product-card h3,
.catalog-card h2,
.why-grid h3,
.sitemap-grid h3,
.nova-columns h2,
.menu-panel h2 {
  margin: 16px 0 10px;
  color: var(--navy-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.feature-card p,
.product-card p,
.catalog-card p,
.why-grid p,
.sitemap-grid p,
.nova-columns p,
.menu-panel li,
.brand-system-card p,
.cta-section p,
.contact-card p,
.contact-aside p,
.contact-aside li {
  color: var(--muted);
}

.icon-drop,
.icon-hex,
.icon-slab {
  display: inline-block;
  width: 52px;
  height: 52px;
  background: var(--blue);
}

.icon-drop {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-hex {
  background: transparent;
  border: 12px solid var(--blue);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.icon-slab {
  background: var(--silver);
  clip-path: polygon(8% 0, 100% 18%, 86% 100%, 0 82%);
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category {
  margin: 18px 0 0;
  color: var(--blue) !important;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-mark,
.catalog-icon {
  width: 72px;
  height: 72px;
  background: var(--silver-soft);
  border: 1px solid var(--line);
}

.mark-drop {
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.mark-hex {
  border: 14px solid var(--blue);
  background: transparent;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.mark-ring {
  border: 14px solid var(--navy);
  border-radius: 50%;
  background: transparent;
}

.mark-tools {
  background: var(--navy);
  clip-path: polygon(8% 0, 100% 0, 72% 100%, 0 72%);
}

.mark-slab {
  background: var(--silver);
  clip-path: polygon(0 20%, 100% 0, 82% 100%, 16% 82%);
}

.mark-cube {
  background: transparent;
  border: 12px solid var(--navy);
  transform: rotate(45deg);
}

.brand-system-card,
.cta-section,
.nova-hero,
.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--navy);
  padding: 44px;
  box-shadow: var(--shadow);
}

.brand-system-card::before,
.cta-section::before,
.nova-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border: 34px solid var(--blue);
  transform: rotate(45deg);
}

.brand-system-card h2,
.brand-system-card p,
.cta-section h2,
.cta-section p,
.nova-hero h1,
.nova-hero p,
.contact-hero h1,
.contact-hero p {
  color: var(--white);
}

.brand-system-card .eyebrow,
.cta-section .eyebrow,
.nova-hero .eyebrow,
.contact-hero .eyebrow {
  color: #8ec1ff;
}

.brand-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
}

.brand-stack img {
  width: 100%;
  margin: auto;
}

.stack-divider {
  height: 1px;
  background: var(--line);
}

.single-stack {
  max-width: 420px;
  justify-self: end;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-grid span,
.nova-columns span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.cta-section {
  margin-bottom: 80px;
}

.cta-section .btn {
  justify-self: end;
  position: relative;
  z-index: 1;
  background: var(--white);
  color: var(--navy);
}

.page-hero {
  padding: 92px 0 26px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--white);
  background: var(--navy);
}

.catalog-grid {
  grid-template-columns: repeat(4, 1fr);
}

.catalog-card {
  min-height: 310px;
}

.catalog-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 850;
}

.catalog-card.is-hidden {
  display: none;
}

.menu-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-panel ul,
.contact-aside ul {
  padding-left: 20px;
}

.menu-panel li + li,
.contact-aside li + li {
  margin-top: 10px;
}

.primary-panel::before { background: var(--navy); }
.nova-panel::before { background: var(--blue); }
.silver-panel::before { background: var(--silver); }

.sitemap-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
}

.nova-hero {
  margin-top: 62px;
  min-height: 560px;
}

.nova-logo-frame {
  position: relative;
  z-index: 1;
  padding: 26px;
  border-radius: 28px;
  background: var(--white);
}

.nova-columns {
  grid-template-columns: repeat(3, 1fr);
}

.contact-hero {
  margin-top: 62px;
}

.contact-card {
  position: relative;
  z-index: 1;
  background: var(--white);
}

.contact-card h2,
.contact-card p,
.contact-card a {
  color: var(--navy-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  gap: 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.full-row {
  grid-column: 1 / -1;
}

label {
  color: var(--navy-dark);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 114, 255, 0.12);
}

.contact-form .btn {
  justify-self: start;
}

.form-message {
  margin: 0;
  align-self: center;
  color: var(--blue);
  font-weight: 800;
}

.contact-aside img {
  width: 240px;
  margin-bottom: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 40px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(5, 37, 95, 0.07);
}

.site-footer img {
  width: 150px;
  margin-bottom: 14px;
}

.site-footer h4 {
  margin: 0 0 12px;
  color: var(--navy-dark);
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 700ms ease forwards;
}

.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 220ms; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    margin: 12px 16px 0;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .hero,
  .brand-system-card,
  .cta-section,
  .nova-hero,
  .contact-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .brand-card {
    min-height: 420px;
  }

  .feature-grid,
  .why-grid,
  .menu-map,
  .nova-columns {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .catalog-grid,
  .sitemap-grid,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section .btn,
  .single-stack {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    padding: 10px 12px;
  }

  .brand {
    width: 116px;
    min-width: 116px;
  }

  .hero-copy h1,
  .page-hero h1,
  .nova-hero h1,
  .contact-hero h1 {
    letter-spacing: -0.045em;
  }

  .hero-visual {
    min-height: 340px;
  }

  .brand-card {
    min-height: 320px;
    padding: 22px;
  }

  .sub-brand-chip {
    width: 190px;
    left: 8px;
    bottom: 2px;
  }

  .geo-one {
    width: 60px;
    height: 60px;
    border-width: 12px;
  }

  .product-grid,
  .catalog-grid,
  .sitemap-grid,
  .site-footer,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .brand-system-card,
  .cta-section,
  .nova-hero,
  .contact-hero {
    padding: 28px;
  }

  .section-top {
    display: block;
  }

  .site-footer {
    padding: 26px;
  }
}

/* Iteration 2: Resinova resin atmosphere + stronger responsive behavior */
html {
  font-size: clamp(15px, 0.24vw + 14px, 16px);
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(10, 114, 255, 0.09), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(183, 188, 196, 0.18), transparent 30%),
    #ffffff;
}

body::before {
  background:
    radial-gradient(circle at 12% 16%, rgba(10, 114, 255, 0.08), transparent 20%),
    radial-gradient(circle at 82% 6%, rgba(5, 37, 95, 0.05), transparent 24%),
    linear-gradient(90deg, rgba(5, 37, 95, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(5, 37, 95, 0.02) 1px, transparent 1px),
    #ffffff;
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
}

.site-header {
  width: min(calc(100% - 32px), calc(var(--max) + 64px));
}

.section-shell {
  width: min(var(--max), calc(100% - clamp(24px, 5vw, 64px)));
}

.hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 5vw, 68px);
  min-height: clamp(620px, 82svh, 780px);
  padding-block: clamp(58px, 8vw, 108px) clamp(48px, 7vw, 82px);
}

.resin-hero {
  isolation: isolate;
}

.resin-flow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.72;
  pointer-events: none;
}

.resin-flow-one {
  width: clamp(260px, 34vw, 520px);
  height: clamp(260px, 34vw, 520px);
  right: min(-9vw, -40px);
  top: 70px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), transparent 26%),
    radial-gradient(circle at 60% 65%, rgba(10, 114, 255, 0.34), transparent 32%),
    rgba(10, 114, 255, 0.10);
}

.resin-flow-two {
  width: clamp(220px, 26vw, 410px);
  height: clamp(120px, 17vw, 230px);
  left: min(-8vw, -36px);
  bottom: 72px;
  background:
    radial-gradient(circle at 20% 48%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(125deg, rgba(5, 37, 95, 0.12), rgba(10, 114, 255, 0.15), rgba(183, 188, 196, 0.20));
  transform: rotate(-8deg);
}

.hero-copy,
.hero-visual,
.resin-moodboard,
.products-preview,
.brand-system,
.why-section,
.cta-section {
  position: relative;
}

.hero-copy h1,
.page-hero h1,
.nova-hero h1,
.contact-hero h1 {
  font-size: clamp(2.35rem, 5.7vw, 5.75rem);
  text-wrap: balance;
}

.resin-highlight {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.resin-highlight::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.04em;
  bottom: 0.02em;
  height: 0.12em;
  border-radius: 999px;
  background: rgba(10, 114, 255, 0.14);
  z-index: -1;
}

.resin-pour-card {
  overflow: visible;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.34) 24%, transparent 25%),
    radial-gradient(circle at 78% 66%, rgba(10, 114, 255, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.88);
  border-color: rgba(10, 114, 255, 0.22);
  backdrop-filter: blur(18px);
}

.resin-pour-card::before {
  inset: 18px -18px -18px 18px;
  background:
    linear-gradient(135deg, var(--navy), #073b91 55%, var(--blue));
  border-radius: 32px;
}

.resin-pour-card::after {
  width: 72%;
  height: 34%;
  right: -22px;
  top: -28px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px 999px 999px 20px;
  background:
    radial-gradient(circle at 28% 36%, rgba(255, 255, 255, 0.95), transparent 12%),
    linear-gradient(115deg, rgba(10, 114, 255, 0.20), rgba(255, 255, 255, 0.70), rgba(183, 188, 196, 0.34));
  box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.72), 0 22px 48px rgba(5, 37, 95, 0.10);
  transform: rotate(-9deg);
}

.resin-shine {
  position: absolute;
  inset: 26px;
  z-index: 0;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), transparent 28%),
    radial-gradient(circle at 76% 72%, rgba(10, 114, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.resin-pour-card img {
  position: relative;
  z-index: 1;
}

.resin-bubble {
  position: absolute;
  z-index: 4;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(10, 114, 255, 0.20);
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.92), 0 10px 28px rgba(5, 37, 95, 0.10);
}

.bubble-one {
  width: 42px;
  height: 42px;
  right: 10%;
  top: 17%;
}

.bubble-two {
  width: 24px;
  height: 24px;
  right: 20%;
  top: 31%;
}

.bubble-three {
  width: 30px;
  height: 30px;
  left: 14%;
  bottom: 26%;
}

.feature-grid,
.product-grid,
.catalog-grid,
.why-grid,
.sitemap-grid,
.nova-columns,
.menu-map {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.product-grid,
.catalog-grid,
.sitemap-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr));
}

.feature-card,
.product-card,
.catalog-card,
.why-grid article,
.sitemap-grid div,
.nova-columns article,
.contact-card,
.contact-aside,
.menu-panel,
.contact-form {
  box-shadow: 0 18px 52px rgba(5, 37, 95, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.resin-product-card,
.product-card:has(.mark-drop),
.product-card:has(.mark-ring),
.catalog-card[data-category="resinova"] {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.92), transparent 18%),
    radial-gradient(circle at 86% 8%, rgba(10, 114, 255, 0.13), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.94));
}

.resin-product-card::after,
.product-card:has(.mark-drop)::after,
.product-card:has(.mark-ring)::after,
.catalog-card[data-category="resinova"]::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 44px;
  right: -22px;
  bottom: 20px;
  border-radius: 999px;
  background: rgba(10, 114, 255, 0.10);
  transform: rotate(-22deg);
}

.resin-moodboard {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.25fr);
  align-items: stretch;
  gap: 28px;
  padding: clamp(48px, 7vw, 82px) 0;
}

.resin-mood-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(10, 114, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.90), transparent 24%),
    linear-gradient(135deg, rgba(5, 37, 95, 0.96), rgba(5, 37, 95, 0.86) 52%, rgba(10, 114, 255, 0.86));
  box-shadow: var(--shadow);
}

.resin-mood-copy::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -50px;
  bottom: -48px;
  border-radius: 52% 48% 50% 0;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(-32deg);
}

.resin-mood-copy h2,
.resin-mood-copy p {
  color: var(--white);
}

.resin-mood-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.resin-mood-copy .eyebrow {
  color: #b9dcff;
}

.resin-mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mood-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(10, 114, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 54px rgba(5, 37, 95, 0.08);
}

.mood-card::before {
  content: "";
  position: absolute;
  inset: auto -42px -74px -42px;
  height: 168px;
  border-radius: 50% 50% 0 0;
  background: rgba(10, 114, 255, 0.15);
}

.mood-card span {
  display: block;
  width: 88px;
  height: 88px;
  margin-bottom: 34px;
  border: 1px solid rgba(10, 114, 255, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 2px 18px rgba(255, 255, 255, 0.96), 0 18px 36px rgba(5, 37, 95, 0.08);
}

.clear-pour span {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pigment-swirl span {
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 38%, #ffffff 0 18%, transparent 19%),
    conic-gradient(from 145deg, rgba(10, 114, 255, 0.84), rgba(183, 188, 196, 0.50), rgba(5, 37, 95, 0.84), rgba(10, 114, 255, 0.84));
}

.cure-ready span {
  border-radius: 18px;
  clip-path: polygon(8% 0, 100% 18%, 86% 100%, 0 82%);
  background: linear-gradient(135deg, rgba(183, 188, 196, 0.62), rgba(255, 255, 255, 0.82));
}

.mood-card h3 {
  margin: 0 0 10px;
  color: var(--navy-dark);
  font-size: 1.35rem;
  line-height: 1.08;
}

.mood-card p {
  margin: 0;
  color: var(--muted);
}

.page-hero.resin-page-hero {
  position: relative;
  overflow: hidden;
  margin-top: 42px;
  padding: clamp(42px, 6vw, 68px);
  border: 1px solid rgba(10, 114, 255, 0.15);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 22%, rgba(10, 114, 255, 0.15), transparent 26%),
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.94), transparent 26%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.page-hero.resin-page-hero::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -68px;
  width: 230px;
  height: 230px;
  border-radius: 50% 50% 50% 0;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.90), transparent 18%),
    rgba(10, 114, 255, 0.14);
  transform: rotate(-34deg);
}

.resin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.resin-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(10, 114, 255, 0.18);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.brand-system-card,
.cta-section,
.nova-hero,
.contact-hero {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
}

.contact-form {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.full-row {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  .product-grid,
  .catalog-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  }

  .resin-mood-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 32px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 820px;
  }

  .resin-moodboard,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .brand-system-card,
  .cta-section,
  .nova-hero,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .main-nav.open {
    max-height: calc(100svh - 96px);
    overflow-y: auto;
  }
}

@media (max-width: 740px) {
  .site-header {
    border-radius: 24px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy h1,
  .page-hero h1,
  .nova-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .hero-text,
  .page-hero p,
  .nova-hero p,
  .contact-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .filter-bar,
  .resin-tags {
    align-items: stretch;
  }

  .hero-actions .btn,
  .filter-btn {
    flex: 1 1 100%;
  }

  .resin-mood-grid {
    grid-template-columns: 1fr;
  }

  .brand-card::before {
    inset: 12px -10px -12px 10px;
  }

  .resin-pour-card::after {
    width: 62%;
    height: 28%;
    right: -8px;
    top: -12px;
  }

  .sub-brand-chip {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 280px);
    margin-top: -34px;
    justify-self: start;
  }

  .bubble-one,
  .bubble-two,
  .bubble-three,
  .geo-one,
  .geo-two {
    display: none;
  }

  .page-hero.resin-page-hero {
    margin-top: 28px;
    padding: 30px;
  }
}

@media (max-width: 520px) {
  .section-shell,
  .site-footer {
    width: calc(100% - 22px);
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 9px 10px;
  }

  .brand {
    width: 108px;
    min-width: 108px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    border-radius: 20px;
  }

  .brand-card {
    min-height: clamp(260px, 72vw, 340px);
    padding: 18px;
    border-radius: 22px;
  }

  .hero-visual {
    min-height: auto;
    display: block;
  }

  .sub-brand-chip {
    margin-top: 14px;
  }

  .feature-card,
  .product-card,
  .catalog-card,
  .why-grid article,
  .sitemap-grid div,
  .nova-columns article,
  .contact-card,
  .contact-aside,
  .menu-panel,
  .contact-form,
  .brand-system-card,
  .cta-section,
  .nova-hero,
  .contact-hero,
  .resin-mood-copy,
  .mood-card {
    padding: 22px;
    border-radius: 20px;
  }

  .split-section,
  .products-preview,
  .why-section,
  .brand-system,
  .filter-section,
  .menu-map,
  .sitemap-section,
  .nova-columns,
  .contact-layout,
  .resin-moodboard {
    padding: 42px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .hero-copy h1,
  .page-hero h1,
  .nova-hero h1,
  .contact-hero h1,
  .section-heading h2,
  .section-top h2,
  .brand-system-card h2,
  .cta-section h2,
  .sitemap-section h2,
  .contact-card h2,
  .contact-aside h2,
  .resin-mood-copy h2 {
    letter-spacing: -0.035em;
  }

  .btn,
  .filter-btn {
    width: 100%;
  }
}

.resin-pour-card::after {
  z-index: 0;
  pointer-events: none;
}


/* Iteration 3: customer-facing wording + product-focused structure */
.sub-brand-chip p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-aside li,
.menu-panel li {
  color: var(--muted);
}

.contact-aside li::marker,
.menu-panel li::marker {
  color: var(--blue);
}

@media (max-width: 820px) {
  .hero-actions {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .hero-copy h1,
  .page-hero h1,
  .nova-hero h1,
  .contact-hero h1 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-text,
  .page-hero p,
  .nova-hero p,
  .contact-hero p,
  .feature-card p,
  .product-card p,
  .catalog-card p,
  .why-grid p,
  .mood-card p,
  .contact-aside p,
  .contact-card p {
    overflow-wrap: anywhere;
  }

  .section-heading h2,
  .section-top h2,
  .brand-system-card h2,
  .cta-section h2,
  .resin-mood-copy h2,
  .contact-card h2,
  .contact-aside h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }
}

/* Iteration 4: cleaner Nova 3D wording + dual-brand footer */
.site-footer {
  grid-template-columns: minmax(0, 1.7fr) minmax(160px, 0.55fr) minmax(190px, 0.65fr);
  align-items: start;
}

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

.footer-brand-card {
  padding: 18px;
  border: 1px solid rgba(223, 228, 236, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.9), transparent 30%),
    rgba(255, 255, 255, 0.76);
}

.footer-brand-card img {
  width: min(170px, 100%);
  height: 56px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 12px;
}

.footer-brand-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.nova-footer-brand {
  background:
    radial-gradient(circle at 84% 18%, rgba(10, 114, 255, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.76);
}

@media (max-width: 980px) {
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .footer-brands {
    grid-template-columns: 1fr;
  }

  .footer-brand-card img {
    height: 52px;
  }
}

/* Iteration 5: wider responsive layout + resin/glass direction + blocky Nova 3D language */
:root {
  --navy: #061a44;
  --navy-dark: #03122f;
  --blue: #087bff;
  --blue-deep: #045fc9;
  --resin-aqua: #27d5c6;
  --resin-violet: #7867ff;
  --resin-rose: #f0d8ff;
  --pearl: #fbfaf5;
  --cream: #f5efe2;
  --silver: #bac3ce;
  --silver-soft: #eef5fb;
  --ink: #101828;
  --muted: #5f6f84;
  --line: rgba(142, 165, 190, 0.28);
  --shadow: 0 30px 80px rgba(6, 26, 68, 0.14);
  --max: 1560px;
  --page-gutter: clamp(14px, 3vw, 42px);
  --radius-lg: 34px;
  --radius-md: 24px;
}

html {
  font-size: clamp(15px, 0.18vw + 14.6px, 17px);
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 4%, rgba(39, 213, 198, 0.18), transparent 28%),
    radial-gradient(circle at 92% 2%, rgba(120, 103, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--pearl) 42%, #ffffff 100%);
}

body::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.85) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 12%, rgba(39, 213, 198, 0.10), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(120, 103, 255, 0.09), transparent 28%),
    linear-gradient(90deg, rgba(6, 26, 68, 0.022) 1px, transparent 1px),
    linear-gradient(rgba(6, 26, 68, 0.022) 1px, transparent 1px),
    transparent;
  background-size: 34px 34px, auto, auto, 88px 88px, 88px 88px, auto;
}

.site-header,
.section-shell,
.site-footer {
  width: min(var(--max), calc(100% - (var(--page-gutter) * 2)));
}

.site-header {
  max-width: none;
  margin-top: 16px;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 56px rgba(6, 26, 68, 0.10);
}

.main-nav a:hover,
.main-nav a.active,
.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.hero,
.page-hero.resin-page-hero,
.nova-hero,
.contact-hero,
.resin-moodboard,
.split-section,
.products-preview,
.why-section,
.brand-system,
.filter-section,
.contact-layout {
  width: min(var(--max), calc(100% - (var(--page-gutter) * 2)));
}

.hero {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.86fr);
  margin-top: clamp(16px, 2vw, 28px);
  min-height: min(820px, calc(100svh - 58px));
  padding: clamp(52px, 7vw, 100px) clamp(20px, 4vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.98) 0 14%, transparent 26%),
    radial-gradient(circle at 78% 20%, rgba(39, 213, 198, 0.22), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(120, 103, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(239, 250, 255, 0.62) 45%, rgba(245, 239, 226, 0.70));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.hero-copy h1,
.page-hero h1,
.nova-hero h1,
.contact-hero h1 {
  color: var(--navy-dark);
  font-size: clamp(2.55rem, 6.4vw, 7.1rem);
  letter-spacing: -0.075em;
}

.hero-text,
.page-hero p,
.nova-hero p,
.contact-hero p {
  font-size: clamp(1rem, 0.45vw + 0.96rem, 1.28rem);
}

.resin-highlight {
  color: var(--blue);
  text-shadow: 0 14px 34px rgba(8, 123, 255, 0.15);
}

.resin-highlight::after {
  height: 0.2em;
  background: linear-gradient(90deg, rgba(39, 213, 198, 0.28), rgba(120, 103, 255, 0.16), rgba(8, 123, 255, 0.24));
  filter: blur(0.5px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--resin-aqua));
  box-shadow: 0 18px 42px rgba(8, 123, 255, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.resin-flow-one {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.96), transparent 19%),
    radial-gradient(circle at 56% 58%, rgba(39, 213, 198, 0.30), transparent 27%),
    radial-gradient(circle at 70% 38%, rgba(120, 103, 255, 0.24), transparent 31%),
    rgba(8, 123, 255, 0.11);
  filter: blur(6px);
}

.resin-flow-two {
  background:
    radial-gradient(circle at 18% 45%, rgba(255, 255, 255, 0.94), transparent 22%),
    linear-gradient(125deg, rgba(39, 213, 198, 0.20), rgba(120, 103, 255, 0.17), rgba(245, 239, 226, 0.50));
  filter: blur(4px);
}

.brand-card,
.feature-card,
.product-card,
.catalog-card,
.why-grid article,
.contact-form,
.contact-aside,
.contact-card,
.footer-brand-card {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(18px);
}

.resin-pour-card {
  min-height: clamp(420px, 33vw, 570px);
  width: min(100%, 560px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 23% 20%, rgba(255, 255, 255, 0.98) 0 12%, transparent 23%),
    conic-gradient(from 210deg at 58% 58%, rgba(39, 213, 198, 0.18), rgba(8, 123, 255, 0.14), rgba(120, 103, 255, 0.17), rgba(245, 239, 226, 0.56), rgba(39, 213, 198, 0.18)),
    rgba(255, 255, 255, 0.65);
}

.resin-pour-card::before {
  background:
    radial-gradient(circle at 26% 28%, rgba(39, 213, 198, 0.62), transparent 24%),
    radial-gradient(circle at 80% 78%, rgba(120, 103, 255, 0.46), transparent 28%),
    linear-gradient(135deg, #061a44, #074ea5 54%, #0fa7df);
  border-radius: 42px;
}

.resin-pour-card::after {
  width: 78%;
  height: 42%;
  border-radius: 999px 999px 999px 34px;
  background:
    radial-gradient(circle at 23% 28%, rgba(255, 255, 255, 1), transparent 12%),
    radial-gradient(circle at 70% 62%, rgba(39, 213, 198, 0.22), transparent 25%),
    linear-gradient(115deg, rgba(8, 123, 255, 0.18), rgba(255, 255, 255, 0.78), rgba(120, 103, 255, 0.16));
}

.sub-brand-chip {
  border-radius: 12px;
  border-color: rgba(8, 123, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.90), rgba(237, 247, 255, 0.86)),
    linear-gradient(90deg, rgba(6, 26, 68, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(6, 26, 68, 0.06) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.sub-brand-chip::after,
.nova-logo-frame::after,
.catalog-card[data-category="nova3d"]::after,
.nova-columns article::after,
.nova-footer-brand::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  right: 14px;
  bottom: 14px;
  border: 8px solid rgba(8, 123, 255, 0.20);
  transform: rotate(45deg);
}

.split-section,
.products-preview,
.why-section,
.brand-system,
.filter-section,
.menu-map,
.sitemap-section,
.nova-columns,
.contact-layout,
.resin-moodboard {
  padding: clamp(56px, 6vw, 100px) 0;
}

.section-heading,
.section-top {
  max-width: none;
}

.section-heading h2,
.section-top h2,
.brand-system-card h2,
.cta-section h2,
.sitemap-section h2,
.contact-card h2,
.contact-aside h2,
.resin-mood-copy h2 {
  font-size: clamp(2.05rem, 3.8vw, 4.6rem);
  letter-spacing: -0.065em;
}

.feature-grid,
.product-grid,
.catalog-grid,
.why-grid,
.nova-columns,
.sitemap-grid,
.menu-map {
  gap: clamp(16px, 1.6vw, 28px);
}

.feature-card,
.product-card,
.catalog-card,
.why-grid article,
.nova-columns article,
.contact-card,
.contact-aside,
.menu-panel {
  padding: clamp(24px, 2.2vw, 38px);
}

.feature-card::before,
.product-card::before,
.catalog-card::before,
.menu-panel::before {
  height: 7px;
  background: linear-gradient(90deg, var(--resin-aqua), var(--blue), var(--resin-violet));
}

.resin-product-card,
.product-card:has(.mark-drop),
.product-card:has(.mark-ring),
.product-card:has(.mark-slab),
.catalog-card[data-category="resinova"] {
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.98), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(39, 213, 198, 0.16), transparent 28%),
    radial-gradient(circle at 66% 88%, rgba(120, 103, 255, 0.10), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(238, 250, 255, 0.78) 58%, rgba(245, 239, 226, 0.58));
}

.resin-product-card::after,
.product-card:has(.mark-drop)::after,
.product-card:has(.mark-ring)::after,
.product-card:has(.mark-slab)::after,
.catalog-card[data-category="resinova"]::after {
  width: 132px;
  height: 64px;
  right: -26px;
  bottom: 18px;
  border: 1px solid rgba(255,255,255,0.66);
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 38%, rgba(255, 255, 255, 0.86), transparent 20%),
    linear-gradient(120deg, rgba(39, 213, 198, 0.18), rgba(8, 123, 255, 0.14), rgba(120, 103, 255, 0.12));
  transform: rotate(-19deg);
}

.icon-drop,
.mark-drop {
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.72), transparent 22%),
    linear-gradient(135deg, var(--resin-aqua), var(--blue));
}

.icon-slab,
.mark-slab,
.cure-ready span {
  background:
    linear-gradient(135deg, rgba(245, 239, 226, 0.95), rgba(8, 123, 255, 0.22), rgba(120, 103, 255, 0.18));
}

.mark-ring {
  border-color: var(--resin-aqua);
  box-shadow: inset 0 0 0 9px rgba(8, 123, 255, 0.12);
}

.mark-cube,
.mark-hex,
.icon-hex {
  border-color: var(--blue);
}

.resin-moodboard {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.55fr);
  gap: clamp(20px, 2.5vw, 40px);
}

.resin-mood-copy {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.34), transparent 24%),
    radial-gradient(circle at 86% 80%, rgba(39, 213, 198, 0.22), transparent 30%),
    linear-gradient(135deg, #061a44, #075eb9 52%, #0baac2);
}

.mood-card {
  min-height: clamp(230px, 20vw, 315px);
  background:
    radial-gradient(circle at 14% 12%, rgba(255,255,255,0.98), transparent 22%),
    linear-gradient(145deg, rgba(255,255,255,0.78), rgba(239, 250, 255, 0.74));
  backdrop-filter: blur(16px);
}

.clear-pour span {
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,0.9), transparent 24%),
    linear-gradient(135deg, rgba(39, 213, 198, 0.42), rgba(8, 123, 255, 0.22));
}

.pigment-swirl span {
  background:
    radial-gradient(circle at 35% 38%, #ffffff 0 16%, transparent 17%),
    conic-gradient(from 145deg, var(--resin-aqua), var(--blue), var(--resin-violet), var(--cream), var(--resin-aqua));
}

/* Nova 3D: blocky system */
.brand-system-card,
.nova-hero {
  border-radius: clamp(18px, 2.2vw, 34px);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(135deg, #061a44 0%, #082969 48%, #087bff 100%);
  background-size: 28px 28px, 28px 28px, auto;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
}

.brand-system-card::before,
.nova-hero::before,
.contact-hero::before,
.cta-section::before {
  border-color: rgba(39, 213, 198, 0.36);
  border-width: 26px;
}

.brand-stack,
.nova-logo-frame {
  border: 1px solid rgba(8, 123, 255, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(6,26,68,0.055) 1px, transparent 1px),
    linear-gradient(rgba(6,26,68,0.055) 1px, transparent 1px),
    rgba(255,255,255,0.92);
  background-size: 22px 22px, 22px 22px, auto;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.catalog-card[data-category="nova3d"],
.nova-columns article,
.nova-footer-brand {
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(6,26,68,0.042) 1px, transparent 1px),
    linear-gradient(rgba(6,26,68,0.042) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255,255,255,0.90), rgba(237,247,255,0.82));
  background-size: 24px 24px, 24px 24px, auto;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.catalog-card[data-category="nova3d"]::before,
.nova-columns article::before,
.nova-footer-brand::before {
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

.nova-columns article span,
.why-grid span {
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.catalog-card[data-category="nova3d"] .catalog-icon,
.product-card:has(.mark-hex) .product-mark,
.nova-columns article span {
  box-shadow: 8px 8px 0 rgba(8, 123, 255, 0.14);
}

.catalog-card[data-category="nova3d"] .catalog-icon,
.product-card:has(.mark-hex) .product-mark {
  border-radius: 8px;
}

.contact-hero,
.cta-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(39, 213, 198, 0.18), transparent 22%),
    linear-gradient(135deg, #061a44, #074ea5 62%, #0a8bd9);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
input,
select,
textarea {
  background: rgba(255,255,255,0.82);
  border-color: rgba(142, 165, 190, 0.38);
}

.site-footer {
  max-width: none;
  margin-bottom: var(--page-gutter);
  background:
    radial-gradient(circle at 8% 12%, rgba(39, 213, 198, 0.12), transparent 28%),
    radial-gradient(circle at 94% 10%, rgba(8, 123, 255, 0.09), transparent 32%),
    rgba(255,255,255,0.76);
  backdrop-filter: blur(18px);
}

.footer-brands {
  gap: clamp(14px, 1.5vw, 24px);
}

.footer-brand-card:first-child {
  background:
    radial-gradient(circle at 16% 16%, rgba(255,255,255,0.98), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(39,213,198,0.10), transparent 34%),
    rgba(255,255,255,0.70);
}

@media (min-width: 1500px) {
  .hero,
  .page-hero.resin-page-hero,
  .nova-hero,
  .contact-hero,
  .resin-moodboard,
  .split-section,
  .products-preview,
  .why-section,
  .brand-system,
  .filter-section,
  .contact-layout,
  .site-footer,
  .site-header {
    width: calc(100% - 72px);
  }
}

@media (min-width: 1180px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid,
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why-grid,
  .nova-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero,
  .resin-moodboard,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 720px;
    width: 100%;
    justify-self: center;
  }

  .resin-mood-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  }
}

@media (max-width: 740px) {
  :root {
    --page-gutter: 11px;
  }

  .site-header {
    border-radius: 22px;
  }

  .hero,
  .page-hero.resin-page-hero,
  .nova-hero,
  .contact-hero,
  .brand-system-card,
  .cta-section {
    border-radius: 24px;
    clip-path: none;
  }

  .hero {
    padding: 34px 18px;
  }

  .hero-copy h1,
  .page-hero h1,
  .nova-hero h1,
  .contact-hero h1 {
    font-size: clamp(2rem, 12.4vw, 4.15rem);
    letter-spacing: -0.052em;
  }

  .section-heading h2,
  .section-top h2,
  .brand-system-card h2,
  .cta-section h2,
  .sitemap-section h2,
  .contact-card h2,
  .contact-aside h2,
  .resin-mood-copy h2 {
    font-size: clamp(1.75rem, 10vw, 3rem);
  }

  .brand-stack,
  .nova-logo-frame,
  .sub-brand-chip,
  .catalog-card[data-category="nova3d"],
  .nova-columns article,
  .nova-footer-brand {
    clip-path: none;
  }

  .product-grid,
  .catalog-grid,
  .feature-grid,
  .why-grid,
  .nova-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero-actions .btn,
  .filter-btn,
  .cta-section .btn,
  .contact-form .btn {
    width: 100%;
  }

  .feature-card,
  .product-card,
  .catalog-card,
  .why-grid article,
  .nova-columns article,
  .contact-card,
  .contact-aside,
  .menu-panel,
  .contact-form,
  .brand-system-card,
  .cta-section,
  .nova-hero,
  .contact-hero,
  .resin-mood-copy,
  .mood-card {
    padding: 19px;
  }
}

/* Iteration 6: dual-logo menu bar + more attractive navigation */
.site-header {
  position: sticky;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  min-height: 86px;
  padding: 10px clamp(14px, 2vw, 26px);
  border: 1px solid transparent;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.88), rgba(239,250,255,0.72) 46%, rgba(255,255,255,0.82)) padding-box,
    linear-gradient(120deg, rgba(39,213,198,0.72), rgba(255,255,255,0.92), rgba(120,103,255,0.42), rgba(8,123,255,0.70)) border-box;
  box-shadow:
    0 22px 64px rgba(6, 26, 68, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.90);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 10% 38%, rgba(39, 213, 198, 0.18), transparent 24%),
    radial-gradient(circle at 52% 0%, rgba(255, 255, 255, 0.92), transparent 25%),
    radial-gradient(circle at 92% 48%, rgba(120, 103, 255, 0.13), transparent 26%);
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(39,213,198,0.62), rgba(8,123,255,0.55), rgba(120,103,255,0.38), transparent);
  pointer-events: none;
}

.brand-duo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  width: auto;
  min-width: 0;
  margin-left: clamp(12px, 2.2vw, 38px);
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.84), rgba(238,248,255,0.70));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.96),
    0 12px 34px rgba(6,26,68,0.08);
}

.brand-logo-pill {
  position: relative;
  display: grid;
  place-items: center;
  height: 58px;
  padding: 4px 8px;
  border-radius: 24px;
  background: rgba(255,255,255,0.54);
}

.brand-logo-pill img {
  width: clamp(112px, 8.7vw, 146px);
  height: 52px;
  object-fit: contain;
}

.resinova-nav-logo {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.96), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(39,213,198,0.12), transparent 30%),
    rgba(255,255,255,0.48);
}

.resinova-nav-logo::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 6px;
  width: 72px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(39,213,198,0.18), rgba(8,123,255,0.13), rgba(120,103,255,0.12));
  transform: rotate(-18deg);
  pointer-events: none;
}

.nova-nav-logo {
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(6,26,68,0.055) 1px, transparent 1px),
    linear-gradient(rgba(6,26,68,0.055) 1px, transparent 1px),
    rgba(255,255,255,0.62);
  background-size: 17px 17px, 17px 17px, auto;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.brand-cross {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue) 58%, var(--resin-aqua));
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
  box-shadow:
    0 10px 24px rgba(8,123,255,0.23),
    inset 0 1px 0 rgba(255,255,255,0.38);
}

.main-nav {
  position: relative;
  z-index: 1;
  gap: 5px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.65), rgba(238,248,255,0.46));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.86),
    0 10px 30px rgba(6,26,68,0.06);
  backdrop-filter: blur(18px);
}

.main-nav a {
  position: relative;
  overflow: hidden;
  padding: 11px 16px;
  border: 1px solid transparent;
  color: var(--navy-dark);
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(39,213,198,0.18), rgba(8,123,255,0.13), rgba(120,103,255,0.11));
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy-dark);
  background: transparent;
  border-color: rgba(8,123,255,0.20);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.main-nav a:hover::before,
.main-nav a.active::before {
  opacity: 1;
  transform: scale(1);
}

.main-nav a.active {
  color: var(--blue-deep);
}

.main-nav a:last-child {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 28px rgba(8,123,255,0.20);
}

.main-nav a:last-child::before {
  background: linear-gradient(135deg, rgba(39,213,198,0.40), rgba(8,123,255,0.12));
}

.main-nav a:last-child:hover,
.main-nav a:last-child.active {
  color: #fff;
  border-color: rgba(255,255,255,0.34);
}

.nav-toggle {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(238,248,255,0.68));
  border-color: rgba(8,123,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.86), 0 10px 24px rgba(6,26,68,0.08);
}

.nav-toggle span {
  background: linear-gradient(90deg, var(--navy), var(--blue));
}

@media (max-width: 1180px) {
  .site-header {
    gap: 12px;
  }

  .brand-duo {
    margin-left: clamp(6px, 1vw, 16px);
  }

  .brand-logo-pill img {
    width: clamp(92px, 9vw, 120px);
  }

  .main-nav a {
    padding-inline: 12px;
  }
}

@media (max-width: 980px) {
  .site-header {
    overflow: visible;
    min-height: 76px;
  }

  .brand-duo {
    margin-left: 6px;
  }

  .brand-logo-pill {
    height: 50px;
    padding-inline: 6px;
  }

  .brand-logo-pill img {
    width: clamp(80px, 13vw, 108px);
    height: 44px;
  }

  .main-nav {
    padding: 12px;
    border-radius: 26px;
    background:
      linear-gradient(90deg, rgba(6,26,68,0.045) 1px, transparent 1px),
      linear-gradient(rgba(6,26,68,0.045) 1px, transparent 1px),
      rgba(255,255,255,0.94);
    background-size: 22px 22px, 22px 22px, auto;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 16px;
    border-radius: 18px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 8px 9px;
  }

  .brand-duo {
    max-width: calc(100% - 54px);
    gap: 4px;
    margin-left: 0;
    padding: 4px 5px;
  }

  .brand-logo-pill {
    height: 44px;
    padding: 2px 4px;
    border-radius: 18px;
  }

  .brand-logo-pill img {
    width: clamp(62px, 22vw, 82px);
    height: 38px;
  }

  .brand-cross {
    width: 23px;
    height: 23px;
    font-size: 0.82rem;
  }

  .nova-nav-logo {
    border-radius: 10px;
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 365px) {
  .brand-logo-pill img {
    width: 58px;
  }

  .brand-cross {
    width: 21px;
    height: 21px;
  }
}


/* Iteration 8: ecommerce placeholders, cart, checkout */
.main-nav .cart-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--resin-aqua, #27d5c6));
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.shop-hero,
.cart-hero,
.checkout-hero {
  margin-top: clamp(28px, 4vw, 54px);
}

.shop-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.shop-toolbar h2,
.cart-panel h2,
.cart-summary h2,
.checkout-form h2,
.checkout-summary-panel h2,
.notification-card h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.shop-note,
.summary-note {
  max-width: 680px;
  color: var(--muted);
}

.shop-search {
  width: min(100%, 380px);
  color: var(--navy-dark);
  font-weight: 800;
}

.shop-search span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.shop-search input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(8,123,255,0.20);
  border-radius: 999px;
  outline: none;
}

.shop-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10,114,255,0.11);
}

.shop-filter-bar {
  margin-bottom: 30px;
}

.ecommerce-grid {
  align-items: stretch;
}

.ecommerce-product-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
}

.product-visual {
  position: relative;
  min-height: 128px;
  margin: -4px -4px 18px;
  border: 1px solid rgba(8,123,255,0.14);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(234,248,255,0.9));
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product-visual::before {
  inset: 18px 22px auto auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff 0 16%, rgba(255,255,255,0.45) 17% 27%, transparent 28%), linear-gradient(135deg, rgba(10,114,255,0.82), rgba(39,213,198,0.74));
  opacity: 0.92;
}

.product-visual::after {
  left: -24px;
  right: -24px;
  bottom: 18px;
  height: 58px;
  border-radius: 999px;
  border-top: 15px solid rgba(120,103,255,0.74);
  transform: rotate(-10deg);
}

.product-visual.nova-style {
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(6,26,68,0.08) 1px, transparent 1px),
    linear-gradient(rgba(6,26,68,0.08) 1px, transparent 1px),
    linear-gradient(135deg, #071a45, #073b91 62%, #0a72ff);
  background-size: 22px 22px, 22px 22px, auto;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.product-visual.nova-style::before {
  width: 76px;
  height: 76px;
  right: 26px;
  top: 24px;
  border-radius: 12px;
  background: transparent;
  border: 14px solid #0a72ff;
  box-shadow: 14px 14px 0 rgba(255,255,255,0.16);
  transform: rotate(45deg);
}

.product-visual.nova-style::after {
  display: none;
}

.product-price {
  margin: 10px 0 0;
  color: var(--blue-deep);
  font-size: 1.4rem;
  font-weight: 950;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}

.product-meta span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--navy-dark);
  background: rgba(10,114,255,0.08);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: auto;
}

.product-card-actions .btn {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.92rem;
  cursor: pointer;
}

.btn-soft {
  color: var(--navy);
  background: rgba(10,114,255,0.07);
  border-color: rgba(10,114,255,0.16);
}

.btn-soft:hover {
  background: rgba(10,114,255,0.12);
}

.cart-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  max-width: min(360px, calc(100% - 44px));
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 18px 44px rgba(5, 37, 95, 0.22);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.65fr);
  gap: 24px;
  padding: 58px 0 78px;
}

.cart-panel,
.cart-summary,
.checkout-form,
.checkout-summary-panel,
.notification-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 52px rgba(5, 37, 95, 0.07);
  backdrop-filter: blur(16px);
}

.cart-panel,
.cart-summary,
.checkout-form,
.checkout-summary-panel,
.notification-card {
  padding: clamp(22px, 3vw, 34px);
}

.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.clear-cart-btn {
  border: 1px solid rgba(10,114,255,0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--navy);
  background: rgba(255,255,255,0.78);
  cursor: pointer;
  font-weight: 800;
}

.cart-empty {
  padding: 24px;
  border: 1px dashed rgba(10,114,255,0.25);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(10,114,255,0.04);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.cart-item:first-child {
  border-top: 0;
}

.cart-item h3 {
  margin: 0 0 6px;
  color: var(--navy-dark);
}

.cart-item p {
  margin: 0;
  color: var(--muted);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn,
.remove-btn {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border: 1px solid rgba(10,114,255,0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.remove-btn {
  min-width: auto;
  padding: 0 12px;
  color: #a03333;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.summary-line strong {
  color: var(--navy-dark);
}

.full-btn {
  width: 100%;
  margin-top: 14px;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-dark);
  font-weight: 800;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(10,114,255,0.20);
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  outline: none;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10,114,255,0.11);
}

.form-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-mini-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.checkout-mini-item strong {
  color: var(--navy-dark);
}

.notification-preview {
  padding-bottom: 80px;
}

.notification-card pre {
  white-space: pre-wrap;
  word-break: break-word;
  padding: 18px;
  border-radius: 18px;
  color: #dbeafe;
  background: #061a44;
  line-height: 1.5;
}

.notification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .shop-toolbar,
  .cart-panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-search {
    width: 100%;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .main-nav .cart-link,
  .main-nav .checkout-link {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .product-card-actions,
  .form-two-columns,
  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-actions {
    justify-content: flex-start;
  }
}


/* Iteration 9: cleaner modern dual-brand logo system + ecommerce navigation */
.site-header {
  width: calc(100% - clamp(26px, 4vw, 64px));
  max-width: 1540px;
  min-height: 94px;
  margin-top: clamp(14px, 2vw, 26px);
  padding: 15px clamp(16px, 2.3vw, 34px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 16%, rgba(255,255,255,0.95), transparent 32%),
    linear-gradient(115deg, rgba(255,255,255,0.94), rgba(242,249,255,0.82) 48%, rgba(255,255,255,0.90)) padding-box,
    linear-gradient(120deg, rgba(255,255,255,0.95), rgba(8,123,255,0.28), rgba(39,213,198,0.24), rgba(8,123,255,0.50)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 24px 60px rgba(6, 26, 68, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.94),
    inset 0 -1px 0 rgba(8,123,255,0.11);
}

.site-header::before {
  inset: 8px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(8,123,255,0.040) 1px, transparent 1px),
    linear-gradient(rgba(8,123,255,0.032) 1px, transparent 1px),
    radial-gradient(circle at 88% 50%, rgba(8,123,255,0.11), transparent 25%),
    radial-gradient(circle at 12% 44%, rgba(39,213,198,0.12), transparent 30%);
  background-size: 34px 34px, 34px 34px, auto, auto;
  opacity: 0.85;
}

.site-header::after {
  left: clamp(22px, 3vw, 44px);
  right: clamp(22px, 3vw, 44px);
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,123,255,0.32), rgba(39,213,198,0.32), transparent);
}

.brand-duo {
  flex: 0 1 auto;
  gap: clamp(10px, 1.35vw, 20px);
  margin-left: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-width: min(48vw, 500px);
}

.brand-logo-pill,
.resinova-nav-logo,
.nova-nav-logo {
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  overflow: visible;
}

.resinova-nav-logo::after,
.nova-nav-logo::after {
  display: none;
}

.brand-logo-pill img {
  display: block;
  width: auto;
  height: clamp(50px, 5.2vw, 70px);
  max-width: min(230px, 21vw);
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(6,26,68,0.10));
}

.resinova-nav-logo img {
  max-width: min(255px, 22vw);
}

.nova-nav-logo img {
  max-width: min(235px, 21vw);
}

.brand-cross {
  width: auto;
  height: auto;
  color: #8d98aa;
  background: transparent;
  box-shadow: none;
  font-size: clamp(1.3rem, 1.8vw, 1.85rem);
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

.main-nav {
  gap: 3px;
  margin-left: auto;
  padding: 7px;
  border: 1px solid rgba(255,255,255,0.80);
  border-radius: 28px;
  background: rgba(255,255,255,0.58);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.92),
    0 12px 32px rgba(6,26,68,0.06);
}

.main-nav a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
}

.cart-link {
  position: relative;
  padding-left: 14px !important;
}

.cart-link::before {
  content: "🛒";
  font-size: 1.05rem;
  line-height: 1;
  transform: translateY(-1px);
}

.cart-count {
  position: relative;
  top: -10px;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(8,123,255,0.24);
}

.checkout-link {
  padding-inline: 20px !important;
  border-radius: 21px !important;
}

.checkout-link::after {
  content: "→";
  font-size: 1.2rem;
  line-height: 1;
}

.hero.resin-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(206, 220, 238, 0.70);
  border-radius: 38px;
  margin-top: clamp(38px, 5vw, 76px);
  padding-inline: clamp(20px, 4.6vw, 74px);
  background:
    radial-gradient(circle at 94% 30%, rgba(8,123,255,0.13), transparent 28%),
    radial-gradient(circle at 6% 14%, rgba(39,213,198,0.12), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(238,248,255,0.78));
  box-shadow: 0 28px 80px rgba(6,26,68,0.10);
}

.hero.resin-hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -34% 25%;
  height: 58%;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,0.92), transparent 22%),
    linear-gradient(115deg, rgba(255,255,255,0.04), rgba(8,123,255,0.20), rgba(39,213,198,0.08));
  transform: rotate(-9deg);
  opacity: 0.86;
  pointer-events: none;
}

.hero.resin-hero::after {
  content: "";
  position: absolute;
  right: -9%;
  bottom: -16%;
  width: 54%;
  height: 78%;
  border-radius: 48% 52% 0 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.24) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.22) 1px, transparent 1px),
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.70), transparent 20%),
    linear-gradient(140deg, rgba(8,123,255,0.17), rgba(8,123,255,0.04));
  background-size: 19px 19px, 19px 19px, auto, auto;
  opacity: 0.76;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 860px;
}

.brand-hero-showcase {
  position: relative;
  z-index: 2;
  min-height: 520px;
}

.dual-brand-showcase {
  position: relative;
  width: min(100%, 630px);
  min-height: 455px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 18px;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(196, 218, 241, 0.80);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.98), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(8,123,255,0.12), transparent 34%),
    rgba(255,255,255,0.58);
  backdrop-filter: blur(18px);
  box-shadow:
    0 32px 80px rgba(6,26,68,0.14),
    inset 0 1px 0 rgba(255,255,255,0.94);
  overflow: hidden;
}

.showcase-glow {
  position: absolute;
  inset: -25% -20% -32% 18%;
  background:
    radial-gradient(circle at 44% 40%, rgba(255,255,255,0.86), transparent 14%),
    linear-gradient(135deg, rgba(39,213,198,0.22), rgba(8,123,255,0.19), rgba(120,103,255,0.11));
  border-radius: 45%;
  filter: blur(4px);
  transform: rotate(-12deg);
  pointer-events: none;
}

.brand-showcase-card {
  position: relative;
  z-index: 2;
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px clamp(16px, 2.8vw, 28px);
  border: 1px solid rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.94), 0 18px 44px rgba(6,26,68,0.08);
}

.resinova-showcase-card {
  border-radius: 28px;
}

.nova-showcase-card {
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(6,26,68,0.050) 1px, transparent 1px),
    linear-gradient(rgba(6,26,68,0.050) 1px, transparent 1px),
    rgba(255,255,255,0.74);
  background-size: 24px 24px, 24px 24px, auto;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.brand-showcase-card img {
  width: min(100%, 390px);
  max-height: 78px;
  object-fit: contain;
  justify-self: start;
  filter: drop-shadow(0 10px 20px rgba(6,26,68,0.10));
}

.brand-showcase-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.showcase-label {
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase-x {
  position: relative;
  z-index: 3;
  width: 36px;
  height: 36px;
  margin: -8px 0 -8px clamp(22px, 6vw, 70px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 30px rgba(8,123,255,0.24);
  font-weight: 900;
}

.showcase-strip {
  position: absolute;
  z-index: 1;
  right: 18px;
  top: 26px;
  display: grid;
  gap: 10px;
}

.showcase-strip span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(8,123,255,0.36);
  background: rgba(255,255,255,0.70);
}

.site-footer .footer-brand-card img {
  width: min(100%, 265px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 1240px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand-duo {
    min-width: 390px;
  }

  .brand-logo-pill img {
    height: 56px;
    max-width: 190px;
  }

  .main-nav a {
    padding-inline: 11px;
  }
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 24px);
    overflow: visible;
    min-height: 82px;
    border-radius: 26px;
  }

  .brand-duo {
    min-width: 0;
    max-width: calc(100% - 60px);
  }

  .brand-logo-pill img {
    height: 52px;
    max-width: 190px;
  }

  .main-nav {
    top: calc(100% + 13px);
    border-radius: 24px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .checkout-link,
  .cart-link {
    justify-content: center;
  }

  .hero.resin-hero {
    margin-top: 24px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    padding: 9px 10px;
  }

  .brand-duo {
    gap: 7px;
  }

  .brand-logo-pill img {
    height: 43px;
    max-width: min(34vw, 142px);
  }

  .brand-cross {
    font-size: 1.05rem;
  }

  .hero.resin-hero {
    border-radius: 26px;
    padding-inline: 18px;
  }

  .brand-hero-showcase {
    min-height: auto;
  }

  .dual-brand-showcase {
    min-height: auto;
    border-radius: 24px;
    padding: 16px;
  }

  .brand-showcase-card {
    min-height: 116px;
    padding: 16px;
  }

  .nova-showcase-card {
    clip-path: none;
    border-radius: 18px;
  }

  .brand-showcase-card img {
    width: min(100%, 310px);
  }

  .site-footer .footer-brand-card img {
    width: min(100%, 230px);
  }
}

@media (max-width: 430px) {
  .brand-logo-pill img {
    height: 36px;
    max-width: 122px;
  }

  .brand-cross {
    display: none;
  }

  .brand-duo {
    gap: 5px;
  }

  .brand-showcase-card img {
    max-height: 58px;
  }
}


/* Iteration 10: clean logo lockups + richer hero brand card backgrounds */
.brand-duo {
  min-width: min(50vw, 560px);
  gap: clamp(8px, 1vw, 15px);
  align-items: center;
  overflow: visible;
}

.brand-logo-pill {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: visible;
  min-width: 0;
}

.brand-logo-pill img {
  width: auto;
  height: clamp(48px, 4.7vw, 62px);
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.resinova-nav-logo img {
  width: clamp(210px, 19vw, 284px);
  max-width: none;
}

.nova-nav-logo img {
  width: clamp(210px, 18.5vw, 282px);
  max-width: none;
}

.brand-cross {
  flex: 0 0 auto;
}

/* Make the hero logo area feel designed, without changing the logos themselves */
.dual-brand-showcase {
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(154, 198, 236, 0.74);
  background:
    radial-gradient(circle at 17% 18%, rgba(255,255,255,0.96), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(8,123,255,0.18), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.62), rgba(232,247,255,0.54));
}

.dual-brand-showcase::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -18% -14% -26% 18%;
  border-radius: 48% 52% 42% 58%;
  background:
    radial-gradient(circle at 20% 34%, rgba(255,255,255,0.90), transparent 18%),
    linear-gradient(128deg, rgba(39,213,198,0.20), rgba(8,123,255,0.22), rgba(120,103,255,0.11));
  transform: rotate(-11deg);
  filter: blur(1px);
  pointer-events: none;
}

.dual-brand-showcase::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -18px;
  top: 30px;
  width: 112px;
  height: 210px;
  background:
    radial-gradient(circle, rgba(8,123,255,0.42) 0 4px, transparent 5px) 12px 20px / 38px 38px,
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(8,123,255,0.08));
  border-left: 1px solid rgba(8,123,255,0.16);
  opacity: 0.8;
  pointer-events: none;
}

.showcase-glow {
  z-index: 0;
  inset: auto -18% -24% 0;
  height: 70%;
  opacity: 0.62;
  background:
    radial-gradient(circle at 40% 38%, rgba(255,255,255,0.92), transparent 17%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(8,123,255,0.22), rgba(39,213,198,0.10));
  transform: rotate(-8deg);
}

.brand-showcase-card {
  overflow: hidden;
  isolation: isolate;
  min-height: 142px;
  border: 1px solid rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.70);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.98),
    inset 0 -1px 0 rgba(8,123,255,0.08),
    0 24px 56px rgba(6,26,68,0.10);
}

.brand-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.resinova-showcase-card {
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,0.98), transparent 28%),
    linear-gradient(140deg, rgba(255,255,255,0.78), rgba(235,251,255,0.66));
}

.resinova-showcase-card::before {
  background:
    radial-gradient(circle at 88% 28%, rgba(39,213,198,0.18), transparent 22%),
    radial-gradient(circle at 72% 76%, rgba(8,123,255,0.11), transparent 28%),
    linear-gradient(115deg, transparent 0 48%, rgba(39,213,198,0.14) 49% 51%, transparent 52%),
    linear-gradient(155deg, rgba(255,255,255,0.0), rgba(8,123,255,0.08));
}

.resinova-showcase-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -36px;
  bottom: -40px;
  width: 210px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(100deg, rgba(39,213,198,0.10), rgba(8,123,255,0.20), rgba(120,103,255,0.10));
  transform: rotate(-17deg);
  pointer-events: none;
}

.nova-showcase-card {
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(6,26,68,0.060) 1px, transparent 1px),
    linear-gradient(rgba(6,26,68,0.050) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255,255,255,0.78), rgba(235,246,255,0.72));
  background-size: 26px 26px, 26px 26px, auto;
}

.nova-showcase-card::before {
  background:
    linear-gradient(135deg, rgba(6,26,68,0.10), transparent 20%),
    radial-gradient(circle at 82% 28%, rgba(8,123,255,0.18), transparent 24%),
    linear-gradient(135deg, transparent 0 72%, rgba(8,123,255,0.14) 73% 75%, transparent 76%);
}

.nova-showcase-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 18px;
  width: 62px;
  height: 62px;
  border: 2px solid rgba(8,123,255,0.28);
  box-shadow: 12px 12px 0 rgba(8,123,255,0.09), -10px 18px 0 rgba(6,26,68,0.05);
  transform: rotate(45deg);
  pointer-events: none;
}

.brand-showcase-card img {
  width: min(100%, 430px);
  max-height: 86px;
  padding: 2px 0;
  position: relative;
  z-index: 2;
}

.brand-showcase-card p,
.showcase-label {
  position: relative;
  z-index: 2;
}

.showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.showcase-label::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--resin-aqua, #27d5c6));
}

.showcase-x {
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.70);
}

@media (max-width: 1240px) {
  .brand-duo {
    min-width: min(46vw, 460px);
  }

  .resinova-nav-logo img {
    width: clamp(180px, 18vw, 230px);
  }

  .nova-nav-logo img {
    width: clamp(178px, 17.5vw, 226px);
  }
}

@media (max-width: 980px) {
  .brand-duo {
    max-width: calc(100% - 60px);
    min-width: 0;
  }

  .resinova-nav-logo img,
  .nova-nav-logo img {
    width: clamp(138px, 31vw, 220px);
  }

  .brand-logo-pill img {
    height: clamp(38px, 9vw, 56px);
  }
}

@media (max-width: 720px) {
  .dual-brand-showcase::after {
    opacity: 0.35;
  }

  .brand-showcase-card img {
    width: min(100%, 330px);
  }
}

@media (max-width: 560px) {
  .brand-duo {
    gap: 4px;
  }

  .resinova-nav-logo img,
  .nova-nav-logo img {
    width: clamp(92px, 30vw, 142px);
  }

  .brand-logo-pill img {
    height: clamp(32px, 8.4vw, 44px);
  }

  .brand-cross {
    font-size: 1rem;
  }
}

@media (max-width: 390px) {
  .resinova-nav-logo img,
  .nova-nav-logo img {
    width: clamp(78px, 28vw, 112px);
  }
}


/* V10 Why update: stronger customer trust section */
.trust-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 104px) clamp(18px, 4vw, 56px);
  border: 1px solid rgba(206, 220, 238, 0.72);
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 14%, rgba(39, 213, 198, 0.13), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(8, 123, 255, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.90), rgba(238,248,255,0.74));
  box-shadow: 0 28px 80px rgba(6, 26, 68, 0.09);
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: auto -12% -36% 18%;
  height: 58%;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,0.92), transparent 22%),
    linear-gradient(115deg, rgba(255,255,255,0.04), rgba(8,123,255,0.16), rgba(39,213,198,0.08));
  transform: rotate(-8deg);
  pointer-events: none;
}

.trust-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.trust-header h2 {
  margin: 0;
  max-width: 860px;
  color: var(--navy-dark);
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.trust-intro {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.trust-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.35fr);
  gap: clamp(20px, 2vw, 30px);
  align-items: stretch;
}

.trust-main-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,0.98), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(39,213,198,0.16), transparent 30%),
    radial-gradient(circle at 68% 88%, rgba(120,103,255,0.10), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.80), rgba(238,248,255,0.72));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.94),
    0 28px 64px rgba(6,26,68,0.10);
}

.trust-main-card::before {
  content: "";
  position: absolute;
  right: -64px;
  top: -54px;
  width: 210px;
  height: 210px;
  border-radius: 42%;
  background:
    linear-gradient(135deg, rgba(39,213,198,0.24), rgba(8,123,255,0.22), rgba(120,103,255,0.12));
  transform: rotate(16deg);
  opacity: 0.72;
}

.trust-main-card::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -48px;
  width: 240px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(39,213,198,0.10), rgba(8,123,255,0.16), rgba(255,255,255,0.12));
  transform: rotate(-14deg);
}

.trust-kicker {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(8,123,255,0.16);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-main-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: var(--navy-dark);
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.trust-main-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.trust-mini-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.trust-mini-list span {
  padding: 9px 12px;
  border: 1px solid rgba(8,123,255,0.14);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,0.72);
  font-size: 0.84rem;
  font-weight: 850;
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid article {
  min-height: 205px;
  border-color: rgba(255,255,255,0.76);
  background:
    radial-gradient(circle at 16% 14%, rgba(255,255,255,0.96), transparent 24%),
    radial-gradient(circle at 94% 12%, rgba(39,213,198,0.10), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.78), rgba(247,251,255,0.72));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.94),
    0 20px 52px rgba(6,26,68,0.08);
}

.trust-grid article:nth-child(2),
.trust-grid article:nth-child(4) {
  background:
    linear-gradient(90deg, rgba(6,26,68,0.042) 1px, transparent 1px),
    linear-gradient(rgba(6,26,68,0.036) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255,255,255,0.82), rgba(238,248,255,0.74));
  background-size: 24px 24px, 24px 24px, auto;
}

.trust-grid span {
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 8px 8px 0 rgba(8,123,255,0.12);
}

.trust-grid h3 {
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .trust-header,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .trust-main-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .trust-section {
    padding: 38px 18px;
    border-radius: 26px;
  }

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

  .trust-header h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
}


/* Final business polish: trust badges, order standards, FAQ, and catalog notes */
.hero-proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(8, 123, 255, 0.14);
  border-radius: 999px;
  color: var(--navy-dark);
  background: rgba(255,255,255,0.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.94), 0 12px 28px rgba(6,26,68,0.06);
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-proof-bar span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(8,123,255,0.10);
}

.order-standards-section,
.faq-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 6vw, 92px) clamp(18px, 4vw, 56px);
  border: 1px solid rgba(206, 220, 238, 0.72);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 16%, rgba(39, 213, 198, 0.12), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(8, 123, 255, 0.10), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.90), rgba(238,248,255,0.74));
  box-shadow: 0 24px 70px rgba(6, 26, 68, 0.08);
}

.order-standards-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: auto -14% -36% 18%;
  height: 58%;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,0.92), transparent 22%),
    linear-gradient(115deg, rgba(255,255,255,0.04), rgba(8,123,255,0.14), rgba(39,213,198,0.08));
  transform: rotate(-8deg);
  pointer-events: none;
}

.order-standards-section > *,
.faq-section > * {
  position: relative;
  z-index: 2;
}

.order-standards-grid,
.faq-grid {
  display: grid;
  gap: clamp(16px, 1.6vw, 26px);
}

.order-standards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.order-standards-grid article,
.faq-grid article,
.catalog-info-strip article {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.2vw, 34px);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255,255,255,0.96), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,0.78), rgba(247,251,255,0.72));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.94),
    0 18px 48px rgba(6,26,68,0.07);
}

.order-standards-grid article::before,
.faq-grid article::before,
.catalog-info-strip article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--resin-aqua, #27d5c6), var(--blue), var(--resin-violet, #7867ff));
}

.order-standards-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 8px 8px 0 rgba(8,123,255,0.12);
  font-weight: 900;
}

.order-standards-grid h3,
.faq-grid h3 {
  margin: 18px 0 10px;
  color: var(--navy-dark);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.faq-grid h3 {
  margin-top: 4px;
}

.order-standards-grid p,
.faq-grid p,
.catalog-info-strip span {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.catalog-info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  padding: 0 0 clamp(18px, 3vw, 30px);
}

.catalog-info-strip article {
  padding: 22px;
  min-height: 126px;
}

.catalog-info-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 1.05rem;
}

.checkout-form,
.checkout-summary-panel,
.cart-panel,
.cart-summary,
.contact-form,
.contact-aside,
.contact-card {
  border-color: rgba(255,255,255,0.76);
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,0.96), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,0.80), rgba(247,251,255,0.74));
}

.notification-card pre {
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 1180px) {
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-standards-grid,
  .catalog-info-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .order-standards-section,
  .faq-section {
    padding: 38px 18px;
    border-radius: 26px;
  }

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


/* Final polish v2: homepage section breathing room + final catalog copy */
.home-final-section-spacing,
.trust-section,
.order-standards-section,
.faq-section,
.cta-section {
  margin-top: clamp(34px, 4.5vw, 64px);
}

.trust-section {
  margin-top: clamp(48px, 5vw, 78px);
}

.cta-section {
  margin-bottom: 80px;
}

/* Remove excess empty space where the product note strip used to sit */
.shop-section {
  margin-top: clamp(26px, 3.5vw, 46px);
}

/* Make the dark hero sections readable and polished */
.nova-hero h1,
.contact-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.nova-hero p,
.contact-hero p {
  color: rgba(255, 255, 255, 0.84) !important;
}

.nova-hero .eyebrow,
.contact-hero .eyebrow {
  color: #8ec1ff !important;
}

.nova-hero .btn-outline,
.contact-hero .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.10);
}

.nova-hero .btn-outline:hover,
.contact-hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.18);
}

/* Keep quick-contact/contact cards readable inside the contact hero */
.contact-hero .contact-card,
.contact-hero .contact-card p,
.contact-hero .contact-card a,
.contact-hero .contact-card strong {
  color: var(--navy-dark) !important;
  text-shadow: none;
}

.contact-hero .contact-card h2 {
  color: var(--navy-dark) !important;
}

/* Products page should feel like a live catalog, not a coming-soon layout */
.shop-hero {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .trust-section,
  .order-standards-section,
  .faq-section,
  .cta-section {
    margin-top: 28px;
  }
}


/* Final polish v4: align the homepage dual-logo box with the hero headline only */
@media (min-width: 981px) {
  .brand-hero-showcase {
    min-height: auto;
    display: grid;
    align-items: center;
    justify-items: center;
    transform: translateY(clamp(-86px, -5vw, -54px));
  }

  .dual-brand-showcase {
    width: min(100%, 630px);
    min-height: 0;
    height: clamp(360px, 30vw, 430px);
    align-content: center;
    gap: clamp(8px, 1vw, 12px);
    padding: clamp(20px, 2.4vw, 30px);
  }

  .brand-showcase-card {
    min-height: clamp(112px, 9vw, 136px);
    padding-block: clamp(14px, 1.6vw, 20px);
  }

  .brand-showcase-card img {
    width: min(100%, 390px);
    max-height: 74px;
  }

  .showcase-x {
    justify-self: center !important;
    margin: -4px auto !important;
    width: 38px !important;
    height: 38px !important;
  }
}

@media (max-width: 980px) {
  .brand-hero-showcase {
    transform: none;
  }
}
