:root {
  --ink: #10131a;
  --navy: #151624;
  --night: #080c12;
  --muted: #5e6878;
  --line: #e5e9ef;
  --white: #ffffff;
  --soft: #f6f8fb;
  --blush: #fff3f1;
  --mist: #ecf7f6;
  --gold: #d9a441;
  --gold-dark: #a87016;
  --rose: #a33d55;
  --teal: #116a6c;
  --plum: #503052;
  --shadow: 0 18px 40px rgba(16, 19, 26, 0.12);
  --radius: 8px;
}

* {
  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;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

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

.container {
  width: min(calc(100% - 48px), 1600px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(21, 22, 36, 0.98);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 28px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(217, 164, 65, 0.7);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  font-size: 18px;
}

.brand-text {
  color: var(--white);
}

.brand-text::after {
  content: ".com";
  color: var(--gold);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 800;
}

.primary-nav a {
  position: relative;
  padding-block: 8px;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  margin-block: 5px;
}

.hero {
  position: relative;
  min-height: clamp(500px, 72svh, 760px);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.86) 0%, rgba(8, 12, 18, 0.64) 46%, rgba(8, 12, 18, 0.3) 100%),
    linear-gradient(180deg, rgba(8, 12, 18, 0.22), rgba(8, 12, 18, 0.5)),
    url("Images/banner1.png") center 40% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0), rgba(8, 12, 18, 0.72));
  pointer-events: none;
}

.hero-brand-pill {
  position: absolute;
  top: clamp(22px, 4vw, 46px);
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  width: min(620px, calc(100% - 56px));
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(217, 164, 65, 0.75);
  border-radius: 999px;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.42);
}

.hero-brand-pill strong {
  font-size: clamp(26px, 4.5vw, 54px);
  line-height: 1;
  color: #111111;
  text-shadow: 0 2px 0 rgba(217, 164, 65, 0.45);
}

.pill-search {
  width: 28px;
  height: 28px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.pill-search::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 4px;
  right: -10px;
  bottom: -5px;
  background: var(--ink);
  transform: rotate(45deg);
  border-radius: 4px;
}

.pill-dot {
  width: 22px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1e7cff 0 48%, #e53b43 48% 100%);
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 -8px 0 rgba(17, 106, 108, 0.45);
  flex: 0 0 auto;
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.74fr);
  align-items: end;
  gap: 56px;
  padding-top: 118px;
  padding-bottom: 64px;
}

.hero-copy,
.hero-panel,
.about-copy,
.product-card,
.process-card,
.feature-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-section .eyebrow {
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}

.hero-actions,
.cta-wrap .btn {
  margin-top: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  border: 2px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--night);
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(217, 164, 65, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

.hero-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(21, 22, 36, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: clamp(22px, 2vw, 28px);
}

.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  position: relative;
  padding-left: 28px;
  margin-top: 14px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(45deg) translateY(-50%);
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-soft {
  background: var(--soft);
}

.section-tint {
  background: var(--blush);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.article-wrap h2,
.cta-wrap h2 {
  margin: 0;
  color: #0b1430;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.22;
  letter-spacing: 0;
}

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

.feature-card,
.product-card,
.process-card,
.faq-item {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 250px;
  padding: 32px 28px;
  border-top: 4px solid var(--gold);
}

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

.feature-card:nth-child(2) .feature-icon {
  background: var(--rose);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--gold-dark);
}

.feature-card:nth-child(4) .feature-icon {
  background: var(--plum);
}

.feature-card h3,
.product-body h3,
.process-card h3 {
  margin: 0 0 12px;
  color: #07112a;
  font-size: 23px;
  line-height: 1.25;
}

.feature-card p,
.product-body p,
.process-card p,
.about-copy p,
.article-wrap p,
.faq-item p,
.cta-wrap p {
  color: var(--muted);
}

.feature-card p,
.product-body p,
.process-card p {
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.about-visual {
  min-height: 460px;
  margin: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.08), rgba(8, 12, 18, 0.32)),
    url("Images/banner1.png") center 42% / cover no-repeat;
  box-shadow: var(--shadow);
}

.about-copy p {
  margin: 22px 0 0;
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  perspective: 1200px;
}

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 570px;
  border: 1px solid rgba(217, 164, 65, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 247, 0.96)),
    var(--white);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.55) 45%, transparent 56% 100%);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 220ms ease, transform 700ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-12px);
  border-color: rgba(217, 164, 65, 0.5);
  box-shadow: 0 26px 58px rgba(16, 19, 26, 0.18);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
  transform: translateX(70%);
}

.product-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--mist);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: -40% -80%;
  z-index: 2;
  background: linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, 0.28), transparent 60%);
  transform: translateX(-48%);
  animation: productSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.tone-gold {
  background:
    radial-gradient(circle at 58% 30%, rgba(255, 240, 190, 0.42), transparent 28%),
    linear-gradient(135deg, #171008 0%, #725118 46%, #d9a441 100%);
}

.tone-rose {
  background:
    radial-gradient(circle at 58% 30%, rgba(255, 216, 226, 0.38), transparent 28%),
    linear-gradient(135deg, #1b0d15 0%, #7e3b50 48%, #d8798f 100%);
}

.tone-teal {
  background:
    radial-gradient(circle at 58% 30%, rgba(214, 255, 250, 0.42), transparent 28%),
    linear-gradient(135deg, #082124 0%, #1b6565 48%, #5ec6bc 100%);
}

.tone-plum {
  background:
    radial-gradient(circle at 58% 30%, rgba(255, 220, 255, 0.36), transparent 28%),
    linear-gradient(135deg, #170d1c 0%, #533154 48%, #8c5b8e 100%);
}

.product-aura {
  position: absolute;
  z-index: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.16) 36%, transparent 68%);
  filter: blur(2px);
  animation: productAura 4.8s ease-in-out infinite;
}

.spark {
  position: absolute;
  z-index: 3;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.7);
  animation: sparkBlink 2.8s ease-in-out infinite;
}

.spark::before,
.spark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: inherit;
  transform: translate(-50%, -50%);
}

.spark::before {
  width: 4px;
  height: 26px;
}

.spark::after {
  width: 26px;
  height: 4px;
}

.spark-one {
  top: 56px;
  right: 62px;
}

.spark-two {
  left: 56px;
  bottom: 62px;
  width: 11px;
  height: 11px;
  animation-delay: 1.1s;
}

.bottle,
.jar {
  position: absolute;
  z-index: 4;
  display: block;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.96) 0 38%, rgba(241, 237, 226, 0.96) 39% 62%, rgba(255, 255, 255, 0.94) 63% 100%);
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 240ms ease, filter 240ms ease;
}

.bottle {
  --float-x: -58%;
  width: 86px;
  height: 166px;
  border-radius: 26px 26px 14px 14px;
  bottom: 38px;
  left: 50%;
  transform: translateX(var(--float-x));
}

.bottle::before {
  content: "PB";
  position: absolute;
  inset: 56px 12px auto;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.bottle::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 36px;
  height: 24px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px 8px 4px 4px;
}

.bottle.small,
.bottle.mini {
  --float-x: -54%;
  width: 58px;
  height: 116px;
  left: 66%;
  bottom: 34px;
}

.bottle.mini {
  --float-x: -50%;
  left: 35%;
  height: 96px;
}

.bottle.pump {
  height: 176px;
}

.bottle.pump::after {
  width: 42px;
  height: 30px;
  top: -27px;
  border-radius: 8px 8px 3px 3px;
  box-shadow: 23px -7px 0 -7px rgba(255, 255, 255, 0.95);
}

.bottle.mist {
  width: 74px;
  height: 178px;
  border-radius: 18px;
}

.bottle.mist::after {
  width: 28px;
  height: 34px;
  top: -28px;
}

.jar {
  --jar-x: 0;
  width: 104px;
  height: 72px;
  bottom: 38px;
  left: 35%;
  border-radius: 18px 18px 26px 26px;
  transform: translateX(var(--jar-x));
}

.jar::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: -16px;
  height: 22px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
}

.jar::after {
  content: "PB";
  position: absolute;
  inset: 20px 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
}

.jar.large {
  --jar-x: -50%;
  width: 132px;
  height: 86px;
  left: 50%;
  transform: translateX(-50%);
}

.product-card:hover .bottle,
.product-card:focus-within .bottle {
  transform: translateX(var(--float-x)) translateY(-10px) rotate(-1deg);
  filter: brightness(1.04);
}

.product-card:hover .jar,
.product-card:focus-within .jar {
  transform: translateX(var(--jar-x)) translateY(-9px) rotate(1deg);
  filter: brightness(1.04);
}

.product-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
  flex: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  color: var(--gold-dark);
  background: rgba(217, 164, 65, 0.15);
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
}

.rating {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  color: #41505f;
  background: #f4f7f8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.product-body h3 {
  font-size: 24px;
}

.product-benefits {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-benefits li {
  position: relative;
  padding-left: 22px;
  color: #425066;
  font-size: 15px;
  font-weight: 750;
}

.product-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(217, 164, 65, 0.16);
  transform: translateY(-50%);
}

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

.product-btn {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(10, 18, 42, 0.12);
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-btn::after {
  content: "";
  position: absolute;
  inset: -30% -55%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55), transparent 60%);
  transform: translateX(-70%);
  transition: transform 620ms ease;
}

.product-btn:hover,
.product-btn:focus-visible {
  transform: translateY(-2px);
}

.product-btn:hover::after,
.product-btn:focus-visible::after {
  transform: translateX(70%);
}

.product-btn.primary {
  color: #09101c;
  background: linear-gradient(135deg, #ffe292, var(--gold) 54%, #aa7419);
  box-shadow: 0 12px 24px rgba(217, 164, 65, 0.22);
}

.product-btn.ghost {
  color: #142033;
  background: #f6f8fb;
}

@keyframes productAura {
  0%, 100% {
    opacity: 0.62;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.96;
    transform: scale(1.08);
  }
}

@keyframes sparkBlink {
  0%, 100% {
    opacity: 0.28;
    transform: rotate(45deg) scale(0.72);
  }
  46% {
    opacity: 1;
    transform: rotate(45deg) scale(1.08);
  }
}

@keyframes productSweep {
  0%, 54% {
    transform: translateX(-48%);
  }
  76%, 100% {
    transform: translateX(48%);
  }
}

.process-section {
  background: var(--mist);
}

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

.process-card {
  padding: 34px 30px;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.article-wrap {
  max-width: 980px;
  border-left: 6px solid var(--gold);
  padding-left: clamp(24px, 4vw, 46px);
}

.article-wrap p {
  margin: 24px 0 0;
  font-size: 18px;
}

.faq-container {
  max-width: 980px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  border-left: 5px solid var(--gold);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 24px 28px;
  color: var(--gold-dark);
  font-size: 20px;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 28px 26px;
}

.cta-section {
  color: var(--white);
  text-align: center;
  padding: clamp(82px, 9vw, 132px) 0;
  background:
    linear-gradient(90deg, rgba(21, 22, 36, 0.96), rgba(35, 24, 18, 0.96)),
    url("Images/banner1.png") center 48% / cover no-repeat;
}

.cta-wrap {
  max-width: 920px;
}

.cta-wrap h2 {
  color: var(--white);
}

.cta-wrap p {
  max-width: 740px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.site-footer {
  padding: 30px 0;
  color: var(--white);
  background: #05090f;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-panel {
    max-width: 700px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 32px), 1600px);
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand {
    font-size: 23px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(21, 22, 36, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-nav a {
    padding: 14px 12px;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 700px;
    align-items: end;
    background-position: center top;
  }

  .hero-grid {
    padding-top: 118px;
    padding-bottom: 42px;
  }

  .hero-brand-pill {
    width: min(520px, calc(100% - 32px));
    min-height: 54px;
    gap: 12px;
    padding: 10px 16px;
  }

  .hero-brand-pill strong {
    font-size: clamp(24px, 6.6vw, 34px);
  }

  .pill-search {
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .pill-dot {
    width: 18px;
    height: 28px;
  }

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

  .about-visual {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 740px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 13vw, 54px);
    line-height: 1.05;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-brand-pill {
    min-height: 52px;
    gap: 9px;
    padding-inline: 12px;
  }

  .hero-brand-pill strong {
    font-size: clamp(22px, 6.1vw, 28px);
  }

  .pill-search {
    width: 19px;
    height: 19px;
  }

  .pill-search::after {
    width: 9px;
    right: -8px;
    bottom: -4px;
  }

  .pill-dot {
    width: 15px;
    height: 24px;
    border-width: 2px;
  }

  .hero-panel {
    padding: 24px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .feature-grid,
  .product-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .process-card {
    min-height: auto;
  }

  .product-card {
    min-height: auto;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .about-visual {
    min-height: 360px;
  }

  .article-wrap {
    padding-left: 22px;
  }
}
