:root {
  --ink: #17242b;
  --muted: #60717b;
  --line: #dce5e8;
  --paper: #f7fafb;
  --white: #ffffff;
  --teal: #087d88;
  --teal-dark: #075e68;
  --steel: #3d5866;
  --gold: #bd8a34;
  --shadow: 0 18px 50px rgba(23, 36, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 7vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 232, 0.9);
  backdrop-filter: blur(14px);
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--steel));
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active,
.footer-links a:hover {
  color: var(--teal);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--teal);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 680px;
  align-items: center;
  padding: 110px 7vw;
  overflow: hidden;
  color: var(--ink);
  background-color: #f8fbfb;
  background-image: url("badge-supplies-flatlay.png");
  background-position: right center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.2) 72%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.82));
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--teal-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: #173f4a;
  font-size: clamp(2.35rem, 5vw, 4.05rem);
  font-weight: 800;
  line-height: 1.08;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.hero p {
  max-width: 650px;
  color: var(--steel);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--teal);
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  padding: 92px 7vw;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.compact-heading {
  margin-top: 64px;
}

.section-heading p,
.about-layout p,
.support-panel p,
.contact-card p,
.product-copy p,
.credibility-grid p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.supply-section {
  background: var(--paper);
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 36, 43, 0.07);
}

.product-media {
  position: relative;
  min-height: 190px;
  background: #e6eef1;
}

.product-media::before,
.product-media::after,
.product-media span {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.badge-media {
  background: radial-gradient(circle at 42% 48%, #f2f7f8 0 22%, #b9c9ce 23% 24%, transparent 25%),
    linear-gradient(135deg, #d7e1e4, #eef4f5);
}

.badge-media::before {
  width: 86px;
  height: 86px;
  right: 34px;
  bottom: 32px;
  border: 13px solid #859ca6;
  background: #f8fbfb;
}

.badge-media::after {
  width: 78px;
  height: 12px;
  left: 34px;
  bottom: 56px;
  background: var(--teal);
  transform: rotate(-14deg);
}

.badge-media span {
  width: 62px;
  height: 62px;
  left: 48px;
  top: 42px;
  border: 10px solid #9daeb5;
}

.sponge-media {
  background: linear-gradient(135deg, #e9eef0, #d4dde1);
}

.sponge-media::before {
  width: 160px;
  height: 76px;
  left: 36px;
  top: 58px;
  background: repeating-linear-gradient(135deg, #344d59 0 8px, #5d7580 8px 16px);
  border-radius: 16px;
  transform: rotate(-8deg);
}

.sponge-media::after {
  width: 120px;
  height: 54px;
  right: 38px;
  bottom: 38px;
  background: repeating-linear-gradient(135deg, #b18a48 0 7px, #d4b56d 7px 14px);
  border-radius: 14px;
}

.mirror-media {
  background: linear-gradient(135deg, #e7eef1, #f7fbfb);
}

.mirror-media::before {
  width: 120px;
  height: 120px;
  left: 44px;
  top: 34px;
  background: radial-gradient(circle at 35% 35%, #ffffff, #a7d4dc 60%, #55717c);
  border: 10px solid #d8b56c;
}

.mirror-media::after {
  width: 94px;
  height: 94px;
  right: 40px;
  bottom: 34px;
  background: linear-gradient(135deg, #ffffff, #9bc6cf);
  border: 8px solid #8fa3aa;
  border-radius: 8px;
  transform: rotate(8deg);
}

.product-copy {
  padding: 26px;
}

.status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status.active {
  color: #075a34;
  background: #dff5e8;
}

.status.upcoming {
  color: #73510c;
  background: #fff0c7;
}

.status.paused {
  color: #36505b;
  background: #e5edf0;
}

.product-copy ul {
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--steel);
}

.size-guide {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 36, 43, 0.07);
}

.size-guide h3 {
  margin-top: 22px;
  margin-bottom: 0;
}

.size-table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--ink);
  background: #eef5f6;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: var(--steel);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.credibility-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.icon-dot {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.contact-section {
  background: var(--paper);
}

.support-section {
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.support-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.support-panel > div {
  max-width: 790px;
}

.email-panel {
  margin-top: 34px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.about-credibility-heading {
  margin-top: 64px;
}

.application-section {
  background: var(--white);
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: center;
}

.application-copy {
  max-width: 560px;
}

.story-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-image img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-card {
  max-width: 900px;
  padding: 38px;
  background: var(--white);
  border-left: 6px solid var(--teal);
  box-shadow: var(--shadow);
}

.contact-card a {
  color: var(--teal-dark);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.faq-grid article {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  padding: 46px 7vw;
  color: rgba(255, 255, 255, 0.72);
  background: #12252e;
}

.footer-company {
  max-width: 860px;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
}

.site-footer p {
  margin: 7px 0;
}

.site-footer strong {
  color: rgba(255, 255, 255, 0.94);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 16px 22px;
  min-width: 240px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-decoration: none;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 7vw;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-page a {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  .product-grid,
  .credibility-grid,
  .about-layout,
  .application-layout,
  .size-guide,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    right: auto;
    bottom: 8px;
    left: 12px;
    width: 42px;
  }

  .hero {
    min-height: 620px;
    padding: 92px 22px;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.86);
  }

  .section {
    padding: 66px 22px;
  }

  .support-panel,
  .site-footer {
    flex-direction: column;
  }

  .support-panel,
  .contact-card {
    padding: 28px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

