:root {
  --blue: #0646d8;
  --navy: #071b76;
  --deep: #04155f;
  --cyan: #16c3ff;
  --orange: #ff6a00;
  --gold: #ffbb00;
  --green: #3a9e21;
  --purple: #7423d1;
  --red: #ed1e35;
  --ink: #07165f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #d9eaf8;
}

.page-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 38%, rgba(255, 191, 0, .16), transparent 18rem),
    radial-gradient(circle at 90% 30%, rgba(38, 180, 255, .2), transparent 18rem),
    linear-gradient(180deg, #fff 0%, #fff 72%, #f5fbff 100%);
  box-shadow: 0 0 42px rgba(8, 32, 88, .22);
}

.hero {
  position: relative;
  padding: 58px 28px 8px;
}

.corner-ribbon {
  position: absolute;
  inset: -120px auto auto -92px;
  width: 440px;
  height: 300px;
  border-radius: 50%;
  border: 38px solid var(--gold);
  border-right-color: transparent;
  border-bottom-color: transparent;
  rotate: -20deg;
}

.dot-field {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 190px;
  background-image: radial-gradient(#1a76e8 2px, transparent 2.5px);
  background-size: 13px 13px;
  mask-image: radial-gradient(circle at 100% 0%, #000 0 55%, transparent 72%);
  opacity: .7;
}

.brand {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: left;
}

.brand-mark {
  width: 176px;
  aspect-ratio: 1;
  border-radius: 42% 52% 45% 55%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.95) 0 22%, transparent 23%),
    linear-gradient(135deg, #071a83 0%, #0865e8 48%, #10dcff 58%, #00228b 100%);
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.8), 0 8px 18px rgba(0,0,0,.24);
  position: relative;
}

.brand-mark span,
.brand-mark::before {
  content: "";
  position: absolute;
  background: white;
  border-radius: 4px;
  box-shadow: 0 0 0 5px rgba(5, 39, 138, .3);
}

.brand-mark span {
  width: 26px;
  height: 146px;
  left: 86px;
  top: 17px;
  rotate: 34deg;
}

.brand-mark::before {
  width: 26px;
  height: 104px;
  left: 54px;
  top: 52px;
  rotate: -36deg;
}

.brand h1 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  text-transform: uppercase;
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: .8;
  letter-spacing: 0;
  color: var(--navy);
  text-shadow: 4px 7px 0 rgba(0,0,0,.12);
}

.brand p {
  margin: 14px 0 0;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .32em;
  font-size: clamp(1.5rem, 4vw, 3rem);
}

.tagline {
  margin: 30px auto 18px;
  text-align: center;
  max-width: 860px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.15rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .04em;
}

.tagline::before,
.tagline::after {
  content: "• •";
  color: #006cff;
  margin: 0 16px;
}

.phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: min(720px, 92%);
  margin: 0 auto;
  padding: 16px 28px;
  color: white;
  text-decoration: none;
  background: linear-gradient(180deg, #095df5, #061a75);
  border-radius: 999px;
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.15), 0 7px 14px rgba(0,0,0,.23);
}

.phone-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-size: 3rem;
}

.phone strong {
  font-size: clamp(3rem, 10vw, 5.6rem);
  line-height: 1;
  letter-spacing: .03em;
}

.script-line {
  margin: 22px 0 18px;
  text-align: center;
  font-family: Pacifico, cursive;
  font-size: clamp(1.45rem, 4.3vw, 2.3rem);
}

.script-line span {
  color: var(--orange);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.45fr;
  gap: 18px;
  align-items: center;
}

.order-panel {
  background: rgba(255,255,255,.88);
  border: 2px solid #1683ff;
  border-right: 0;
  border-radius: 18px 0 0 18px;
  padding: 24px 24px 20px;
}

.order-panel h2 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.order-panel span {
  display: block;
  color: #0062e8;
}

.order-panel b,
.order-panel h2 {
  color: var(--navy);
}

.order-panel b {
  color: var(--orange);
}

.mascot-card {
  min-height: 500px;
  display: grid;
  place-items: end center;
}

.mascot {
  width: min(350px, 100%);
  height: 480px;
  position: relative;
}

.cap {
  position: absolute;
  z-index: 4;
  left: 84px;
  top: 16px;
  width: 190px;
  height: 92px;
  border-radius: 90px 90px 28px 28px;
  background: linear-gradient(145deg, #0a7cff, #0431a8);
  color: white;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
  font-weight: 900;
  box-shadow: inset 0 -12px 0 rgba(0,0,0,.15);
}

.face {
  position: absolute;
  left: 56px;
  top: 78px;
  width: 240px;
  height: 238px;
  border-radius: 46% 48% 43% 44%;
  background:
    radial-gradient(circle at 33% 45%, #2c221d 0 4px, transparent 5px),
    radial-gradient(circle at 68% 45%, #2c221d 0 4px, transparent 5px),
    linear-gradient(145deg, #2b2825, #0d0c0b);
  box-shadow: inset 18px 12px 22px rgba(255,255,255,.08), 0 10px 20px rgba(0,0,0,.24);
  z-index: 3;
}

.ear {
  position: absolute;
  width: 82px;
  height: 150px;
  background: linear-gradient(145deg, #282522, #0c0b0b);
  border-radius: 48% 48% 55% 55%;
  top: 30px;
}

.ear.left { left: -54px; rotate: 16deg; }
.ear.right { right: -52px; rotate: -14deg; }

.eye {
  position: absolute;
  top: 84px;
  width: 56px;
  height: 66px;
  border-radius: 50%;
  background: radial-gradient(circle at 52% 55%, #17100b 0 10px, #9a4b00 11px 18px, #fff 19px);
}

.eye.left { left: 54px; }
.eye.right { right: 54px; }

.nose {
  position: absolute;
  left: 94px;
  top: 142px;
  width: 54px;
  height: 38px;
  border-radius: 48% 48% 55% 55%;
  background: #050505;
}

.smile {
  position: absolute;
  left: 88px;
  top: 182px;
  width: 70px;
  height: 36px;
  border-radius: 0 0 48px 48px;
  background: #d64b22;
  border: 5px solid #090909;
  border-top: 0;
}

.hoodie {
  position: absolute;
  left: 32px;
  bottom: 0;
  width: 290px;
  height: 220px;
  border-radius: 90px 90px 28px 28px;
  background: linear-gradient(145deg, #087aff, #061f9d);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: inset 0 16px 22px rgba(255,255,255,.15);
}

.thumb {
  position: absolute;
  z-index: 5;
  left: -18px;
  top: 214px;
  font-size: 5rem;
  filter: drop-shadow(0 7px 7px rgba(0,0,0,.26));
}

.promise-list {
  display: grid;
  gap: 16px;
}

.promise-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 14px 22px;
  background: white;
  border-radius: 28px;
  box-shadow: 0 8px 18px rgba(17, 42, 75, .14);
}

.promise-list span {
  font-size: 3.2rem;
  text-align: center;
  font-weight: 900;
}

.promise-list h3 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  text-transform: uppercase;
  font-size: 1.7rem;
  line-height: 1;
}

.promise-list p {
  margin: 5px 0 0;
  color: #151515;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .9rem;
  line-height: 1.35;
}

.blue { color: var(--blue); }
.orange { color: var(--orange); }
.green { color: var(--green); }
.purple { color: var(--purple); }

.showcase {
  position: relative;
  padding: 0 20px 34px;
}

.table {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 225px;
  background: linear-gradient(180deg, #f1c883, #e4b468);
  border-top: 4px solid rgba(120, 75, 20, .18);
}

.product-grid {
  position: relative;
  min-height: 380px;
}

.printer,
.office-printer,
.notebook,
.bottle,
.gift-box,
.bag {
  position: absolute;
  filter: drop-shadow(0 11px 10px rgba(0,0,0,.22));
}

.printer {
  width: 170px;
  height: 175px;
  bottom: 118px;
  left: 0;
  border-radius: 22px 22px 10px 10px;
  background: linear-gradient(145deg, #3c3a36, #050505);
  color: white;
  text-align: center;
  padding-top: 38px;
  font-size: .85rem;
  text-transform: uppercase;
}

.printer.small {
  left: 210px;
  bottom: 92px;
  width: 145px;
  height: 162px;
}

.label {
  width: 90px;
  height: 82px;
  margin: 28px auto 0;
  background: white;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 2px;
}

.label.qr {
  color: #111;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px 20px) 0 0 / 20px 20px,
    white;
}

.notebook {
  width: 220px;
  height: 86px;
  left: 22px;
  bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(145deg, #16498d, #082b68);
  color: rgba(0,0,0,.45);
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bottle {
  width: 76px;
  height: 192px;
  left: 410px;
  bottom: 64px;
  border-radius: 26px 26px 18px 18px;
  background: linear-gradient(90deg, #01256b, #1b83e8 50%, #09266d);
  color: white;
  display: grid;
  place-items: center;
  font-size: 3rem;
  font-weight: 900;
}

.gift-box {
  width: 145px;
  height: 120px;
  left: 545px;
  bottom: 64px;
  background: linear-gradient(145deg, #082e85, #052266);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.gift-box::before {
  content: "";
  position: absolute;
  inset: -18px 58px 0;
  background: #d8dde8;
}

.bag {
  right: 24px;
  bottom: 44px;
  width: 155px;
  height: 190px;
  background: linear-gradient(145deg, #0a3a96, #061e66);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", Inter, sans-serif;
  text-transform: uppercase;
  font-size: 2.2rem;
  font-weight: 800;
}

.bag::before {
  content: "";
  position: absolute;
  top: -26px;
  width: 78px;
  height: 54px;
  border: 8px solid #d5b688;
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
}

.office-printer {
  right: 64px;
  bottom: 190px;
  width: 360px;
  height: 170px;
  border-radius: 18px;
  background: linear-gradient(145deg, #2d2c2a, #050505);
}

.office-printer::before {
  content: "";
  position: absolute;
  inset: -36px 35px 120px 80px;
  border-radius: 6px;
  background: #222;
}

.screen {
  width: 82px;
  height: 44px;
  background: #126eff;
  border: 7px solid #222;
  border-radius: 5px;
  margin: 52px 0 0 72px;
}

.paper {
  position: absolute;
  left: 115px;
  bottom: -64px;
  width: 155px;
  height: 94px;
  background: white;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
  rotate: 9deg;
}

.services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 24px 20px 20px;
  background: linear-gradient(180deg, #f7fbff, #fff7e7);
}

.service {
  position: relative;
  padding: 56px 16px 28px;
  min-height: 292px;
  background: white;
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 6px 16px rgba(18, 39, 92, .13);
  border-bottom: 8px solid currentColor;
}

.service-icon {
  position: absolute;
  left: 50%;
  top: -28px;
  translate: -50% 0;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  background: white;
  border: 3px solid currentColor;
  border-radius: 50%;
  font-size: 2.8rem;
  box-shadow: 0 4px 9px rgba(0,0,0,.12);
}

.service h2 {
  min-height: 62px;
  margin: 0 0 16px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  text-align: center;
  text-transform: uppercase;
  line-height: .95;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.service ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #171717;
  font-size: .93rem;
  line-height: 1.28;
  font-weight: 600;
}

.service li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
}

.service li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: white;
  background: currentColor;
  font-size: .68rem;
  line-height: 1;
}

.red { color: var(--red); }

.footer {
  padding: 24px 24px 34px;
  color: white;
  background:
    radial-gradient(circle at 52% -10%, rgba(14, 102, 255, .7), transparent 18rem),
    linear-gradient(145deg, #071b75, #03104e);
  text-align: center;
  position: relative;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 90px;
  bottom: -56px;
  border-radius: 50%;
  background: rgba(0, 105, 255, .38);
}

.footer::before { left: -160px; }
.footer::after { right: -120px; }

.footer-points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  font-family: "Barlow Condensed", Inter, sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-points span + span {
  border-left: 2px solid rgba(255,255,255,.65);
  padding-left: 26px;
}

.footer p {
  margin: 20px 0 0;
  font-family: Pacifico, cursive;
  color: white;
  font-size: clamp(2rem, 7vw, 3.6rem);
}

.footer p span {
  color: var(--gold);
}

@media (max-width: 820px) {
  .hero {
    padding: 36px 14px 6px;
  }

  .brand {
    gap: 14px;
  }

  .brand-mark {
    width: 92px;
  }

  .brand-mark span {
    width: 14px;
    height: 78px;
    left: 46px;
    top: 9px;
  }

  .brand-mark::before {
    width: 14px;
    height: 56px;
    left: 29px;
    top: 28px;
  }

  .tagline::before,
  .tagline::after {
    display: none;
  }

  .phone {
    gap: 12px;
    padding: 12px 16px;
  }

  .phone-icon {
    width: 56px;
    height: 56px;
    font-size: 2rem;
  }

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

  .order-panel {
    border-right: 2px solid #1683ff;
    border-radius: 16px;
  }

  .mascot-card {
    min-height: 405px;
  }

  .mascot {
    scale: .82;
    transform-origin: center bottom;
  }

  .promise-list article {
    grid-template-columns: 60px 1fr;
  }

  .showcase {
    padding: 16px 12px 28px;
  }

  .product-grid {
    min-height: 610px;
  }

  .office-printer {
    right: 12px;
    bottom: 310px;
    width: 270px;
  }

  .printer { bottom: 255px; }
  .printer.small { left: 174px; bottom: 216px; }
  .notebook { left: 10px; bottom: 28px; }
  .bottle { left: 270px; bottom: 40px; }
  .gift-box { left: 370px; bottom: 42px; }
  .bag { right: 10px; bottom: 28px; }

  .services {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 54px;
  }

  .service {
    min-height: auto;
  }

  .service h2 {
    min-height: auto;
  }

  .footer-points {
    gap: 12px;
  }

  .footer-points span + span {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 520px) {
  .brand {
    flex-direction: column;
    text-align: center;
  }

  .brand p {
    letter-spacing: .2em;
  }

  .phone strong {
    font-size: 2.5rem;
  }

  .product-grid {
    min-height: 760px;
  }

  .office-printer {
    left: 16px;
    right: auto;
    bottom: 470px;
    width: calc(100% - 32px);
  }

  .printer { left: 8px; bottom: 300px; }
  .printer.small { left: auto; right: 8px; bottom: 286px; }
  .notebook { bottom: 165px; }
  .bottle { left: 245px; bottom: 145px; }
  .gift-box { left: 18px; bottom: 24px; }
  .bag { width: 132px; height: 168px; bottom: 22px; }
}
