:root {
  --teal: #009493;
  --teal-2: #00aaa8;
  --dark: #083d45;
  --ink: #182f36;
  --muted: #607177;
  --gray: #8b8d91;
  --line: rgba(8, 61, 69, .11);
  --soft: #eef8f8;
  --white: #fff;
  --shadow: 0 24px 70px rgba(8, 61, 69, .10);
  --shadow-soft: 0 14px 38px rgba(8, 61, 69, .07);
  --max: 1280px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

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

.logo img { width: 232px; height: auto; }

.menu {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #33484e;
  font-size: .94rem;
  font-weight: 650;
}

.menu a {
  position: relative;
  padding: 26px 0;
}

.menu a:hover,
.menu a.active { color: var(--teal); }

.menu a.active::after,
.menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  border-radius: 20px;
  background: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 850;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #007d7d);
  box-shadow: 0 16px 34px rgba(0,148,147,.22);
}

.btn-light {
  color: var(--teal);
  background: rgba(255,255,255,.74);
  border-color: rgba(0,148,147,.28);
}

.btn-white {
  color: var(--teal);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.13);
}

.mobile-toggle,
.mobile-label { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background:
    radial-gradient(circle at 82% 70%, rgba(0,148,147,.13), transparent 22rem),
    radial-gradient(circle at 0% 85%, rgba(0,148,147,.13), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f5fbfb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -24px;
  width: 54%;
  height: 230px;
  opacity: .42;
  background: repeating-linear-gradient(18deg, transparent 0 13px, rgba(0,148,147,.09) 14px 15px);
  clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 58px;
  top: 110px;
  width: 92px;
  height: 112px;
  opacity: .30;
  background-image: radial-gradient(circle, rgba(8,61,69,.28) 1.7px, transparent 1.9px);
  background-size: 14px 14px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 42px;
  min-height: 600px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(0,148,147,.12);
}

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

.hero h1 {
  max-width: 640px;
  margin-bottom: 20px;
  color: #172932;
  font-size: clamp(3.25rem, 5vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.07em;
  font-weight: 950;
}

.hero p {
  max-width: 560px;
  margin-bottom: 30px;
  color: #53676e;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 46px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
}

.point {
  min-height: 112px;
  padding: 20px 18px;
  display: grid;
  align-content: center;
  text-align: center;
  border-radius: 16px;
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.point-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  color: var(--teal);
  border-radius: 14px;
  background: rgba(0,148,147,.08);
  border: 1px solid rgba(0,148,147,.16);
  font-size: 1.22rem;
}

.point strong {
  color: #274349;
  font-size: .9rem;
  line-height: 1.22;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.founder {
  position: absolute;
  right: 15%;
  bottom: -1px;
  z-index: 2;
  width: min(72%, 560px);
  max-height: 570px;
  object-fit: contain;
  filter: drop-shadow(0 32px 44px rgba(8,61,69,.18));
}

.founder-info {
  position: absolute;
  right: 0;
  top: 145px;
  z-index: 3;
  width: 245px;
}

.founder-info::before {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-bottom: 15px;
  background: var(--teal);
}

.founder-info strong {
  display: block;
  color: var(--teal);
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 950;
}

.founder-info span {
  display: block;
  margin-top: 9px;
  color: #5a686d;
  font-size: .92rem;
  font-weight: 650;
}

.signature {
  margin-top: 24px;
  color: var(--teal);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 2.5rem;
  line-height: 1;
  transform: rotate(-8deg);
  opacity: .76;
}

.bubble {
  position: absolute;
  right: 30px;
  bottom: 100px;
  width: 160px;
  height: 150px;
  opacity: .22;
  background:
    radial-gradient(circle at 20% 68%, var(--teal) 0 12px, transparent 13px),
    radial-gradient(circle at 42% 34%, var(--teal) 0 17px, transparent 18px),
    radial-gradient(circle at 71% 62%, var(--teal) 0 23px, transparent 24px),
    radial-gradient(circle at 76% 24%, var(--teal) 0 9px, transparent 10px);
}

.solutions {
  position: relative;
  z-index: 5;
  padding: 42px 0;
  background: linear-gradient(180deg, #edf8f8 0%, #fff 100%);
  border-top: 1px solid rgba(0,148,147,.08);
  border-bottom: 1px solid rgba(0,148,147,.08);
}

.solutions-grid {
  display: grid;
  grid-template-columns: .8fr repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.section-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 26px;
  border-right: 1px solid rgba(8,61,69,.12);
}

.section-intro h2 {
  margin-bottom: 0;
  color: #0c5660;
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.solution-card {
  min-height: 156px;
  padding: 26px 20px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.solution-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--teal);
}

.solution-card h3 {
  margin-bottom: 4px;
  color: #123b44;
  font-size: 1.02rem;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.products {
  padding: 44px 0 24px;
  background: #fff;
}

.product-panel {
  display: grid;
  grid-template-columns: .9fr .86fr .86fr;
  align-items: center;
  gap: 34px;
  min-height: 430px;
  padding: 40px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 48% 35%, rgba(0,148,147,.08), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #fbfdfd 100%);
  box-shadow: var(--shadow);
}

.kicker {
  margin-bottom: 13px;
  color: var(--teal);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-copy h2 {
  margin-bottom: 12px;
  color: #10343d;
  font-size: clamp(3rem, 4.2vw, 4.65rem);
  line-height: .94;
  letter-spacing: -.07em;
  font-weight: 950;
}

.product-copy p {
  max-width: 430px;
  margin-bottom: 22px;
  color: #566b71;
  font-size: 1.03rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
  list-style: none;
}

.chips li {
  padding: 8px 12px;
  border-radius: 999px;
  color: #0c5861;
  background: rgba(0,148,147,.08);
  border: 1px solid rgba(0,148,147,.14);
  font-size: .82rem;
  font-weight: 800;
}

.machine-wrap {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.machine-wrap::before {
  content: "";
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,148,147,.10), transparent 62%);
}

.machine {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  max-height: 455px;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(8,61,69,.18));
}

.tech-list {
  display: grid;
  gap: 14px;
}

.tech-title {
  margin-bottom: 18px;
  color: #123b44;
  font-size: 1.18rem;
  font-weight: 900;
}

.tech-card {
  display: grid;
  grid-template-columns: 60px 1fr 18px;
  align-items: center;
  gap: 15px;
  min-height: 98px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.tech-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--teal);
  font-size: 1.8rem;
  font-weight: 900;
  border-radius: 14px;
  background: rgba(0,148,147,.07);
}

.tech-card strong {
  display: block;
  color: #113b43;
  font-size: 1.05rem;
  line-height: 1.15;
}

.tech-card span {
  display: block;
  margin-top: 3px;
  color: #65777c;
  font-size: .88rem;
  line-height: 1.25;
}

.arrow { color: #a8b4b8; font-size: 1.6rem; }

.method {
  padding: 34px 0 58px;
  background: #fff;
}

.center-title {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}

.center-title h2 {
  margin-bottom: 8px;
  color: #0e5660;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.center-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.step {
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f8fcfc);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-weight: 950;
}

.step h3 {
  margin-bottom: 8px;
  color: #123b44;
  font-size: 1.22rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.quote-section {
  padding: 0 0 70px;
  background: #fff;
}

.quote-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 40px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #f7fcfc, #fff);
  box-shadow: var(--shadow-soft);
}

.quote-box blockquote {
  margin: 0;
  color: #30484f;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -.025em;
  font-weight: 750;
}

.quote-author {
  min-width: 220px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.quote-author strong {
  display: block;
  color: #123b44;
  font-size: 1rem;
}

.cta {
  padding: 38px 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 46%, rgba(0,170,168,.55), transparent 26rem),
    linear-gradient(135deg, #083d45 0%, #006f78 58%, #009493 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
}

.cta h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.cta p {
  margin: 0;
  color: rgba(255,255,255,.80);
}

.phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  white-space: nowrap;
}

.phone small {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 600;
}

.footer {
  padding: 28px 0;
  color: rgba(255,255,255,.72);
  background: #062a30;
  font-size: .9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer strong { color: #fff; }

.svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1100px) {
  .menu, .nav-cta { display: none; }

  .mobile-label {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    color: var(--teal);
    background: #fff;
    border: 1px solid var(--line);
    font-size: 1.55rem;
    font-weight: 900;
  }

  .mobile-toggle:checked ~ .menu {
    position: absolute;
    top: 76px;
    left: 24px;
    right: 24px;
    display: grid;
    gap: 0;
    padding: 12px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu a { padding: 14px 0; }
  .menu a::after { display: none; }

  .hero-grid,
  .product-panel,
  .cta-grid,
  .quote-box { grid-template-columns: 1fr; }

  .hero-grid { min-height: auto; padding-top: 42px; }
  .hero-visual { min-height: 520px; }
  .founder { right: 15%; width: min(58%, 480px); }
  .founder-info { right: 0; }

  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .section-intro { border-right: 0; padding-right: 0; }
  .method-grid { grid-template-columns: 1fr; }
  .quote-author { padding-left: 0; border-left: 0; }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .logo img { width: 186px; }
  .hero h1 { font-size: clamp(2.65rem, 12vw, 4.2rem); }
  .hero p { font-size: 1.03rem; }
  .hero-actions { gap: 12px; }
  .btn { width: 100%; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .founder { right: 0; width: min(92%, 420px); }
  .founder-info { left: 0; right: auto; top: 22px; width: 210px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .product-panel { padding: 26px 18px; }
  .machine-wrap { min-height: 360px; }
  .machine { width: min(100%, 310px); }
  .tech-card { grid-template-columns: 56px 1fr 16px; }
  .quote-box { padding: 26px 22px; }
  .phone { white-space: normal; }
}
