:root {
  color-scheme: light;
  --ink: #10221f;
  --ink-soft: #29403b;
  --muted: #667873;
  --line: #dce5e1;
  --paper: #fbfcfa;
  --soft: #f0f5f2;
  --mint: #7ef0c1;
  --mint-dark: #0e7a5d;
  --night: #071b18;
  --night-2: #0c2822;
  --violet: #8a7cf5;
  --orange: #ffad69;
  --radius: 26px;
  --shadow: 0 28px 90px rgb(6 35 29 / 14%);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 700px;
  font-size: clamp(4rem, 7.4vw, 7.4rem);
  font-weight: 730;
}

h2 {
  max-width: 780px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 710;
}

h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

em {
  color: var(--mint-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--night);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: white;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 450;
  letter-spacing: -0.02em;
}

.brand strong {
  font-weight: 760;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: block;
  background: var(--mint);
  border-radius: 13px;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 16%);
}

.brand-mark i {
  position: absolute;
  width: 17px;
  height: 5px;
  left: 11px;
  background: var(--night);
  border-radius: 9px;
  transform: rotate(-48deg);
}

.brand-mark i:first-child {
  top: 11px;
}

.brand-mark i:last-child {
  bottom: 11px;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgb(255 255 255 / 72%);
  font-size: 0.92rem;
}

nav a {
  transition: color 160ms ease;
}

nav a:hover {
  color: white;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  color: var(--night);
  background: var(--mint);
  border-radius: 12px;
  font-weight: 700;
}

.nav-cta:hover {
  color: var(--night);
  background: white;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 168px 0 100px;
  color: white;
  background:
    linear-gradient(115deg, rgb(7 27 24 / 100%) 0%, rgb(7 27 24 / 98%) 54%, rgb(11 41 34 / 96%) 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  width: 580px;
  height: 580px;
  content: "";
  top: -340px;
  left: 27%;
  border: 1px solid rgb(126 240 193 / 15%);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgb(126 240 193 / 2%), 0 0 0 220px rgb(126 240 193 / 2%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  width: 380px;
  height: 380px;
  right: 8%;
  bottom: -260px;
  background: rgb(126 240 193 / 12%);
}

.hero-orb-two {
  width: 180px;
  height: 180px;
  top: 23%;
  right: 26%;
  background: rgb(126 240 193 / 5%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  gap: 46px;
  align-items: center;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: rgb(255 255 255 / 66%);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.kicker span {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(126 240 193 / 11%);
}

.hero h1 em {
  color: var(--mint);
}

.lead {
  max-width: 620px;
  margin-top: 28px;
  color: rgb(255 255 255 / 68%);
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 21px;
  border-radius: 13px;
  font-weight: 700;
  transition: transform 170ms ease, background-color 170ms ease;
}

.button:hover,
.contact-button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--night);
  background: var(--mint);
}

.button-primary:hover {
  background: white;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  color: rgb(255 255 255 / 76%);
  border-bottom: 1px solid rgb(255 255 255 / 28%);
  font-weight: 620;
}

.text-link:hover {
  color: white;
  border-color: white;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 54px;
  color: rgb(255 255 255 / 48%);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-proof span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--mint);
}

.hero-product {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
}

.hero-art {
  position: relative;
  width: 610px;
  max-width: calc(100vw - 48px);
  aspect-ratio: 1.56;
  margin-left: auto;
  background: #071b18;
  border: 1px solid rgb(126 240 193 / 16%);
  border-radius: 28px;
  box-shadow: 0 34px 100px rgb(0 0 0 / 38%);
  overflow: hidden;
}

.hero-art::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(115deg, rgb(7 27 24 / 20%), transparent 45%);
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 61% center;
}

.floating-note {
  position: absolute;
  right: -22px;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  color: var(--ink);
  background: white;
  border-radius: 14px;
  box-shadow: 0 20px 55px rgb(0 0 0 / 25%);
}

.note-check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #07664e;
  background: #d8f8e9;
  border-radius: 50%;
  font-weight: 800;
}

.floating-note div {
  display: flex;
  flex-direction: column;
}

.floating-note strong {
  font-size: 0.72rem;
}

.floating-note small {
  color: #83918e;
  font-size: 0.6rem;
}

.signal-bar {
  color: white;
  background: var(--mint-dark);
}

.signal-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-inner i {
  width: 4px;
  height: 4px;
  background: var(--mint);
  border-radius: 50%;
}

.section {
  padding: 124px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.section-intro > p {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 1.04rem;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--mint-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-mint {
  color: var(--mint);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgb(16 34 31 / 8%);
}

.service-featured {
  min-height: 640px;
  grid-row: span 2;
  color: white;
  background: var(--night-2);
  border-color: transparent;
}

.service-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.service-icon {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--mint);
  border-radius: 17px;
}

.service-icon-light {
  color: var(--mint-dark);
  background: #e8f7f0;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-number {
  color: #98a8a4;
  font-size: 0.72rem;
  font-weight: 750;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  max-width: 470px;
  color: var(--muted);
}

.service-featured p {
  color: rgb(255 255 255 / 62%);
}

.mini-ui {
  height: 210px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 42px -30px -30px 50px;
  padding: 30px;
  background: linear-gradient(145deg, #173a33, #0d2722);
  border-top: 1px solid rgb(255 255 255 / 7%);
  border-left: 1px solid rgb(255 255 255 / 7%);
  border-radius: 24px 0 0 0;
}

.mini-ui span {
  flex: 1;
  height: 70%;
  background: linear-gradient(180deg, var(--mint), #42a989);
  border-radius: 12px 12px 3px 3px;
  opacity: 0.9;
}

.mini-ui span:first-child { height: 45%; opacity: 0.45; }
.mini-ui span:last-child { height: 88%; opacity: 0.7; }

.products {
  color: white;
  background: var(--night);
}

.product-intro > p {
  color: rgb(255 255 255 / 54%);
}

.product-cards {
  display: grid;
  gap: 18px;
}

.product-card {
  min-height: 410px;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  border-radius: 30px;
  overflow: hidden;
}

.savelo-card {
  color: #15352e;
  background: #dff7eb;
}

.tevori-card {
  color: #302954;
  background: #eae7ff;
}

.tagvico-card {
  color: #49301c;
  background: #ffead9;
}

.product-card-copy {
  display: flex;
  flex-direction: column;
  padding: 36px;
}

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

.product-logo {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: white;
  background: #0b7357;
  border-radius: 13px;
  font-weight: 800;
}

.product-logo-violet {
  background: #6658be;
}

.product-logo-orange {
  background: #ae6028;
}

.product-state {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-state i {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.7;
}

.product-card h3 {
  margin-top: auto;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.product-card-copy > p {
  max-width: 430px;
  margin-top: 18px;
  color: currentColor;
  opacity: 0.72;
}

.product-audience {
  margin-top: 25px;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-visual {
  position: relative;
  min-height: 410px;
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-photo img {
  transform: scale(1.025);
}

.savelo-card .product-photo img {
  object-position: center;
}

.tevori-card .product-photo img {
  object-position: center;
}

.tagvico-card .product-photo img {
  object-position: center;
}

.studio {
  background: var(--paper);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 100px;
  align-items: start;
}

.studio-heading em {
  display: inline-block;
  margin-top: 8px;
}

.studio-content {
  padding-top: 54px;
  color: var(--muted);
}

.studio-lead {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 550;
}

.studio-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 50px;
}

.studio-facts div {
  padding-top: 17px;
  border-top: 2px solid var(--ink);
}

.studio-facts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 2.6rem;
  line-height: 1;
}

.studio-facts span {
  font-size: 0.73rem;
  line-height: 1.35;
}

.contact {
  padding: 100px 0;
  color: white;
  background: var(--night-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}

.contact h2 {
  max-width: 720px;
}

.contact p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 20px;
  color: rgb(255 255 255 / 58%);
}

.contact-button {
  position: relative;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  padding: 23px 62px 23px 24px;
  color: var(--night);
  background: var(--mint);
  border-radius: 18px;
  transition: transform 170ms ease, background-color 170ms ease;
}

.contact-button:hover {
  background: white;
}

.contact-button span {
  margin-bottom: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.contact-button strong {
  font-size: 0.95rem;
}

.contact-button i {
  position: absolute;
  right: 22px;
  top: 50%;
  font-size: 1.45rem;
  font-style: normal;
  transform: translateY(-50%);
}

.site-footer {
  padding: 70px 0 26px;
  background: #edf3f0;
}

.footer-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 60px;
}

.brand-footer {
  color: var(--ink);
  margin-bottom: 15px;
}

.footer-main > div:first-child > p {
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 80px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav span {
  margin-bottom: 5px;
  color: #93a29e;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  font-size: 0.88rem;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--mint-dark);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 55px;
  padding-top: 21px;
  color: #7c8e89;
  border-top: 1px solid #d5e0db;
  font-size: 0.76rem;
}

.legal-page {
  min-height: 74vh;
  padding: 150px 0 110px;
  color: var(--ink);
  background: linear-gradient(var(--night) 0 88px, var(--paper) 88px);
}

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  margin-bottom: 50px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.legal-content h2 {
  margin: 43px 0 13px;
  font-size: 1.55rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: var(--mint-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-product {
    min-height: 440px;
  }

  .hero-art {
    margin-inline: auto;
  }

  .floating-note {
    right: calc(50% - 310px);
  }
}

@media (max-width: 900px) {
  .section-intro,
  .studio-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 25px;
  }

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

  .service-featured {
    min-height: 560px;
    grid-row: auto;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card-copy {
    min-height: 370px;
  }

  .studio-grid {
    gap: 20px;
  }

  .studio-content {
    padding-top: 20px;
  }

  .contact-button {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 72px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 9px 13px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 72px;
  }

  .hero-grid {
    gap: 52px;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .hero-product {
    min-height: 320px;
  }

  .hero-art {
    width: 100%;
    aspect-ratio: 1.38;
  }

  .floating-note {
    right: 0;
    bottom: 5px;
  }

  .signal-inner {
    min-height: 54px;
    justify-content: center;
  }

  .signal-inner span:nth-of-type(even),
  .signal-inner i {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .section-intro {
    margin-bottom: 40px;
  }

  .service-featured {
    min-height: 500px;
  }

  .product-card-copy {
    min-height: 350px;
    padding: 26px;
  }

  .product-state {
    max-width: 150px;
    justify-content: flex-end;
    text-align: right;
  }

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

  .studio-facts {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 78px 0;
  }

  .contact-button {
    width: 100%;
    min-width: 0;
  }

  .footer-main,
  .footer-legal {
    align-items: start;
    flex-direction: column;
  }

  .footer-nav {
    width: 100%;
    justify-content: space-between;
    gap: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .contact-button,
  .service-card {
    transition: none;
  }
}
