:root {
  --dark:#021133;
  --dark-soft:#0a1b3c;
  --paper:#ffffff;
  --brand-red:#ff243b;
  --ink:#021133;
  --line:rgba(255,255,255,.14);
  --font:'DM Sans',Arial,sans-serif;
  --heading:'Manrope',Arial,sans-serif
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:100px
}
body {
  margin:0;
  background:var(--dark);
  color:var(--paper);
  font-family:var(--font);
  font-size:15px;
  -webkit-font-smoothing:antialiased
}
h1,h2,h3,p {
  margin:0
}
h1,h2,h3 {
  font-family:var(--heading);
  font-weight:600
}
a {
  color:inherit;
  text-decoration:none
}
button,input,textarea,select {
  font:inherit
}
button,a,input,select,textarea {
  -webkit-tap-highlight-color:transparent
}
button {
  cursor:pointer
}
a,button,input,select,textarea {
  outline-offset:5px
}
a:focus-visible,button:focus-visible {
  outline:2px solid var(--brand-red)
}
::selection {
  background:var(--brand-red);
  color:var(--dark)
}
.container {
  width:min(1240px,calc(100% - 112px));
  margin-inline:auto
}
.accent {
  color:var(--brand-red)
}
.muted {
  color:#808b9e
}
.icon {
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex-shrink:0
}
.icon-definitions {
  position:absolute;
  width:0;
  height:0;
  overflow:hidden
}
.skip-link {
  position:fixed;
  top:-100px;
  left:20px;
  z-index:100;
  background:var(--brand-red);
  color:var(--dark);
  padding:14px
}
.skip-link:focus {
  top:10px
}
.eyebrow {
  font-size:10px;
  font-weight:600;
  letter-spacing:1.7px;
  display:flex;
  align-items:center;
  gap:10px
}
.status-dot {
  width:6px;
  height:6px;
  background:var(--brand-red);
  border-radius:50%;
  display:inline-block;
  flex-shrink:0
}
.site-header {
  height:96px;
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(2,17,51,.95);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line)
}
.header-inner {
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--heading);
  font-size:29px;
  font-weight:800;
  color:var(--brand-red);
  letter-spacing:-1.5px
}
.brand-light {
  font-weight:400;
  color:var(--paper)
}
.brand-dot {
  color:var(--brand-red)
}
.brand-symbol {
  font-family:monospace;
  color:var(--brand-red);
  font-size:27px;
  font-weight:400;
  letter-spacing:-5px;
  margin-right:6px
}
.brand-symbol span {
  color:var(--paper)
}
.navigation {
  display:flex;
  align-items:center;
  gap:32px;
  font-size:12px;
  color:#bac2d1
}
.navigation a {
  transition:color .2s
}
.navigation a:hover,.navigation a.active {
  color:var(--paper)
}
.navigation a.active:not(.nav-contact) {
  position:relative
}
.navigation a.active:not(.nav-contact):after {
  content:'';
  position:absolute;
  bottom:-9px;
  left:50%;
  width:3px;
  height:3px;
  background:var(--brand-red);
  border-radius:50%
}
.navigation .nav-contact {
  display:flex;
  align-items:center;
  gap:28px;
  border:1px solid #52617b;
  border-radius:5px;
  padding:12px 18px;
  color:var(--paper)
}
.nav-contact:hover {
  background:var(--dark-soft)
}
.menu-toggle {
  display:none
}
.hero {
  overflow:hidden
}
.hero-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
  padding-top:76px;
  padding-bottom:65px
}
.hero-copy {
  position:relative;
  z-index:2
}
.hero h1 {
  font-size:clamp(56px,6.1vw,84px);
  line-height:1.05;
  letter-spacing:-4.5px;
  margin-top:27px;
  font-weight:500;
  position:relative
}
.title-star {
  color:var(--brand-red);
  font-size:68px;
  position:absolute;
  margin-left:35px;
  margin-top:0;
  transform:rotate(-12deg)
}
.hero-description {
  font-size:14px;
  color:#b1bdcf;
  line-height:1.9;
  max-width:370px;
  margin-top:26px
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:28px;
  margin-top:31px
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  border:0;
  border-radius:5px;
  padding:17px 21px;
  font-size:12px;
  font-weight:600;
  min-height:50px;
  transition:background .2s,transform .2s
}
.button-primary {
  background:var(--brand-red);
  color:var(--dark)
}
.button:hover {
  background:#ff4c60;
  transform:translateY(-2px)
}
.button:disabled {
  opacity:.65;
  cursor:wait;
  transform:none
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:14px;
  font-size:12px
}
.text-link:hover {
  color:var(--brand-red)
}
.hero-actions .text-link {
  color:#c4ccdb
}
.hero-actions .text-link span {
  font-size:20px
}
.hero-note {
  display:flex;
  align-items:center;
  gap:13px;
  margin-top:41px;
  font-size:10px;
  line-height:1.8;
  color:#99a8bf
}
.hero-note strong {
  font-weight:500;
  color:#cbd4e3
}
.note-lines {
  display:flex;
  gap:4px;
  align-items:center
}
.note-lines i {
  width:4px;
  height:23px;
  background:var(--brand-red);
  transform:rotate(24deg)
}
.note-lines i:nth-child(2) {
  height:32px
}
.note-lines i:nth-child(3) {
  height:17px
}
.hero-art {
  height:510px;
  position:relative;
  isolation:isolate;
  margin-top:13px
}
.art-grid {
  position:absolute;
  inset:10px -40px 0 -20px;
  background-image:linear-gradient(#ffffff08 1px,transparent 1px),linear-gradient(90deg,#ffffff08 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(ellipse,black 35%,transparent 70%)
}
.art-orbit {
  border:1px solid #ffffff0d;
  border-radius:50%;
  position:absolute;
  width:475px;
  height:475px;
  left:35px;
  top:8px;
  z-index:-1
}
.orbit-two {
  width:365px;
  height:365px;
  top:60px;
  left:90px
}
.art-label {
  position:absolute;
  right:20px;
  top:7px;
  font-size:8px;
  letter-spacing:1.5px;
  color:#a8b5cb;
  display:flex;
  gap:8px;
  align-items:center
}
.art-label .status-dot {
  background:#ff243b;
  width:5px;
  height:5px
}
.browser-preview {
  position:absolute;
  top:71px;
  left:0;
  width:480px;
  border:1px solid #52617b;
  border-radius:10px;
  overflow:hidden;
  transform:rotate(-7deg);
  box-shadow:0 25px 55px #0005;
  background:#f7f8fb
}
.browser-toolbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#15284c;
  color:#b9c6db;
  padding:12px 13px;
  font-size:8px
}
.browser-dots {
  display:flex;
  gap:4px
}
.browser-dots i {
  width:5px;
  height:5px;
  border-radius:50%;
  background:#6d7f9e
}
.browser-dots i:first-child {
  background:var(--brand-red)
}
.preview-content {
  color:#021133;
  padding:23px 24px 13px;
  background:#f4f6fa
}
.preview-nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:7px
}
.preview-nav b {
  font-size:13px;
  letter-spacing:-.5px
}
.preview-nav b span {
  font-size:7px;
  margin-left:2px
}
.preview-nav i {
  font-style:normal;
  margin-left:12px
}
.preview-main {
  display:flex;
  align-items:center;
  margin-top:33px;
  margin-bottom:25px;
  position:relative
}
.preview-eyebrow {
  font-size:6px;
  letter-spacing:1px
}
.preview-main h2 {
  font-size:38px;
  line-height:1.03;
  letter-spacing:-2px;
  margin:12px 0 18px;
  font-weight:600
}
.preview-main h2 em {
  font-style:normal;
  color:#ff243b
}
.preview-button {
  font-size:6px;
  border-radius:3px;
  background:#021133;
  color:#ffffff;
  padding:10px 12px;
  display:inline-block
}
.preview-footer {
  border-top:1px solid #d5dce8;
  padding-top:13px;
  display:flex;
  justify-content:space-between;
  font-size:5px;
  letter-spacing:1px
}
.sculpture {
  position:absolute;
  width:195px;
  height:210px;
  right:4px;
  top:0
}
.sculpture-ring {
  position:absolute;
  width:150px;
  height:150px;
  border:28px solid #ff4c60;
  border-radius:50%;
  box-shadow:inset 7px 6px 10px #0002,5px 7px 12px #02113320;
  background:transparent
}
.ring-a {
  top:0;
  left:15px;
  transform:rotate(-27deg) scaleX(.5);
  border-color:#ff243b
}
.ring-b {
  top:48px;
  left:25px;
  transform:rotate(35deg) scaleX(.57);
  border-color:#ff8997
}
.ring-c {
  top:71px;
  left:0;
  transform:rotate(-28deg) scaleY(.5);
  border-color:#d91231
}
.sculpture-star {
  position:absolute;
  right:8px;
  top:-15px;
  color:#021133;
  font-size:44px
}
.floating-tag {
  position:absolute;
  z-index:3;
  top:29px;
  left:-19px;
  background:var(--paper);
  color:var(--ink);
  border-radius:7px;
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 8px 30px #0003;
  transform:rotate(-7deg);
  font-size:9px;
  line-height:1.6
}
.tag-icon {
  font-size:30px;
  color:var(--brand-red)
}
.floating-tag strong {
  font-weight:600
}
.floating-tag>span:last-child {
  margin-left:18px;
  font-size:18px
}
.mobile-preview {
  position:absolute;
  z-index:4;
  right:0;
  top:222px;
  width:155px;
  height:276px;
  border:5px solid #15284c;
  border-radius:25px;
  background:var(--brand-red);
  color:#021133;
  box-shadow:0 20px 35px #0006;
  transform:rotate(10deg);
  padding:27px 12px 16px
}
.phone-speaker {
  position:absolute;
  top:7px;
  left:49px;
  border-radius:10px;
  width:45px;
  height:9px;
  background:#15284c
}
.phone-top {
  font-size:6px;
  display:flex;
  justify-content:space-between
}
.phone-top b {
  font-size:8px
}
.phone-shape {
  font-size:72px;
  line-height:1.3;
  text-align:center;
  margin-top:1px
}
.phone-copy {
  font-family:var(--heading);
  font-size:17px;
  font-weight:700;
  line-height:1.05;
  letter-spacing:-.8px
}
.phone-copy em {
  font-style:normal
}
.phone-button {
  background:#021133;
  color:var(--paper);
  padding:9px 8px;
  font-size:5px;
  border-radius:2px;
  margin-top:13px
}
.phone-bottom {
  position:absolute;
  bottom:7px;
  width:44px;
  height:3px;
  border-radius:10px;
  background:#021133;
  left:50px
}
.art-coordinate {
  position:absolute;
  bottom:2px;
  left:8px;
  font-size:7px;
  letter-spacing:1.2px;
  color:#99a8bf
}
.hero-bottom {
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-block:22px;
  color:#8a9bb7;
  font-size:8px;
  letter-spacing:1.5px
}
.hero-bottom a {
  font-size:10px;
  letter-spacing:0;
  color:#cbd4e3;
  display:flex;
  align-items:center;
  gap:17px
}
.hero-bottom a span {
  font-size:18px
}
.expertise-strip {
  background:#0b1d40;
  border-block:1px solid #ffffff0b
}
.expertise-strip .container {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-block:26px;
  font-family:var(--heading);
  font-size:17px;
  letter-spacing:-.3px;
  gap:20px
}
.expertise-strip i {
  font-size:20px;
  color:var(--brand-red);
  font-style:normal
}
.section-light {
  background:var(--paper);
  color:var(--ink)
}
.services {
  padding-block:90px 62px
}
.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  margin-bottom:42px
}
.section-heading .eyebrow {
  color:#67748a;
  margin-bottom:20px
}
.section-heading h2,.about h2 {
  font-size:39px;
  line-height:1.22;
  letter-spacing:-1.7px
}
.section-heading>p {
  color:#637087;
  font-size:12px;
  line-height:1.9;
  margin-bottom:4px
}
.services-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid #dce1e9;
  border-radius:7px;
  overflow:hidden
}
.service-card {
  padding:28px 22px 20px;
  display:flex;
  flex-direction:column;
  transition:background .2s;
  position:relative
}
.service-card+.service-card {
  border-left:1px solid #dce1e9
}
.service-card:hover {
  background:#edf1f8
}
.card-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:34px
}
.service-icon {
  width:28px;
  height:28px;
  fill:none;
  stroke:#021133;
  stroke-width:1.2;
  stroke-linecap:round;
  stroke-linejoin:round
}
.card-top>span {
  font-size:9px;
  color:#8a95a8
}
.service-card h3 {
  font-size:20px;
  line-height:1.3;
  letter-spacing:-.6px;
  margin-bottom:17px
}
.service-card p {
  font-size:13px;
  line-height:1.9;
  color:#5b6880;
  flex:1
}
.card-bottom {
  border-top:1px solid #dce1e9;
  padding-top:20px;
  margin-top:26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:8px;
  color:#5b6880
}
.card-bottom .icon {
  width:16px;
  height:16px;
  color:var(--ink)
}
.hosting-note {
  margin-top:25px;
  display:flex;
  align-items:center;
  gap:13px;
  font-size:10px;
  color:#69768e
}
.hosting-note .icon {
  width:17px
}
.hosting-note strong {
  font-weight:500;
  color:#344663
}
.hosting-note a {
  margin-left:auto;
  white-space:nowrap;
  color:#021133
}
.hosting-note a span {
  margin-left:12px
}
.about {
  padding-block:100px
}
.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:88px;
  align-items:center
}
.about-art {
  height:402px;
  background:#10264b;
  border:1px solid #283f62;
  padding:25px 30px;
  position:relative;
  overflow:hidden;
  border-radius:6px
}
.about-art-top,.about-art-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:7px;
  letter-spacing:1.3px;
  color:#b8c5da
}
.about-art-top>span:last-child {
  font-size:22px
}
.about-word {
  font-family:var(--heading);
  font-size:65px;
  line-height:1.08;
  letter-spacing:-3px;
  margin-top:26px;
  position:relative;
  z-index:2
}
.about-word>span {
  color:#ff243b
}
.about-asterisk {
  position:absolute;
  right:-26px;
  bottom:27px;
  font-size:228px;
  color:var(--brand-red);
  line-height:1;
  transform:rotate(-15deg)
}
.about-art-bottom {
  position:absolute;
  left:30px;
  right:30px;
  bottom:24px;
  line-height:1.8;
  font-size:6px;
  z-index:2
}
.about-art-bottom>span:last-child {
  text-align:right
}
.about-copy .eyebrow {
  color:#a7b7d1;
  margin-bottom:20px
}
.about h2 {
  font-size:34px
}
.about-copy>p:not(.eyebrow) {
  font-size:14px;
  line-height:1.95;
  color:#adbed8;
  margin-top:20px
}
.about-values {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px 15px;
  border-top:1px solid var(--line);
  padding-top:23px;
  margin-top:25px;
  font-size:10px;
  color:#c6d2e6
}
.about-values i {
  font-style:normal;
  color:var(--brand-red);
  margin-right:8px
}
.about-copy>.text-link {
  margin-top:27px;
  color:var(--paper);
  gap:40px
}
.process {
  padding-block:87px 91px
}
.process-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:36px
}
.step-number {
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#99a6bd;
  font-family:var(--heading);
  font-size:33px;
  letter-spacing:-1px;
  border-top:1px solid #d3dce9;
  padding-top:19px;
  padding-bottom:27px
}
.step-number>span {
  font-size:21px;
  color:#71809a
}
.process-grid h3 {
  font-size:16px;
  letter-spacing:-.5px;
  margin-bottom:12px
}
.process-grid p {
  color:#5b6880;
  font-size:13px;
  line-height:1.9;
  max-width:225px
}
.contact {
  margin-top:42px;
  padding:30px;
  border:1px solid var(--brand-red);
  border-radius:7px;
  background:#ffffff;
  color:var(--ink)
}
.contact-banner {
  display:flex;
  align-items:center;
  gap:28px
}
.contact-mark {
  color:var(--brand-red);
  font-size:68px;
  line-height:1;
  flex-shrink:0
}
.contact-invitation {
  flex:1
}
.contact-invitation h3 {
  font-size:32px;
  line-height:1.2;
  letter-spacing:-1.3px
}
.contact-invitation p {
  color:#5b6880;
  font-size:13px;
  line-height:1.7;
  margin-top:10px
}
.contact-banner .button {
  flex-shrink:0;
  gap:15px
}
.contact-banner .fa {
  font-size:20px
}
.footer-contact {
  display:flex;
  flex-direction:column;
  gap:9px;
  font-size:12px;
  color:#b1bdcf
}
.footer-contact a:hover {
  color:var(--brand-red)
}
@media(max-width:900px) {
  .contact-banner {gap:20px}
  .contact-mark {font-size:50px}
  .contact-invitation h3 {font-size:25px}
  .contact-banner .button {font-size:11px;gap:10px;padding:16px}
}
@media(max-width:700px) {
  .contact {padding:23px 20px;margin-top:30px}
  .contact-banner {flex-wrap:wrap;gap:16px}
  .contact-mark {font-size:39px;align-self:flex-start}
  .contact-invitation {flex-basis:calc(100% - 55px)}
  .contact-invitation h3 {font-size:25px}
  .contact-invitation p {font-size:12px;margin-top:8px}
  .contact-banner .button {margin-top:6px;width:100%;font-size:12px;justify-content:center}
  .footer-contact {font-size:11px}
}
.site-footer {
  border-top:1px solid var(--line)
}
.footer-top {
  display:flex;
  align-items:center;
  padding-block:38px;
  gap:60px
}
.footer-top>.brand {
  font-size:25px
}
.footer-top>p {
  font-size:10px;
  line-height:1.8;
  color:#9aacc9
}
.footer-social {
  display:flex;
  gap:25px;
  margin-left:auto;
  font-size:10px;
  color:#c6d5ec
}
.footer-social a:hover {
  color:var(--brand-red)
}
.footer-bottom {
  border-top:1px solid var(--line);
  padding-block:22px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:8px;
  color:#94a6c6
}
.footer-bottom .accent {
  font-size:12px;
  margin-left:7px
}
.footer-bottom>a {
  color:#bdcce5
}
.whatsapp-float {
  position:fixed;
  right:23px;
  bottom:22px;
  z-index:20;
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#ffffff;
  color:#021133;
  font-size:27px;
  border:1px solid #dce1e9;
  box-shadow:0 4px 18px #0003;
  transition:transform .2s
}
.whatsapp-float:hover {
  transform:translateY(-4px)
}
@media(min-width:1450px) {
  .hero-grid {
    padding-top:95px;
    padding-bottom:85px
  }
  .hero-art {
    margin-left:15px
  }
  .browser-preview {
    width:505px
  }
  .mobile-preview {
    right:8px
  }
  .hero h1 {
    font-size:88px
  }
}
@media(max-width:1150px) {
  .container {
    width:calc(100% - 72px)
  }
  .navigation {
    gap:23px
  }
  .hero-grid {
    gap:26px
  }
  .hero h1 {
    font-size:67px;
    letter-spacing:-3.5px
  }
  .title-star {
    font-size:49px;
    margin-left:20px
  }
  .hero-art {
    height:470px
  }
  .browser-preview {
    width:390px;
    top:80px
  }
  .preview-main h2 {
    font-size:32px
  }
  .sculpture {
    transform:scale(.8);
    transform-origin:right center;
    right:-10px
  }
  .mobile-preview {
    width:140px;
    height:260px;
    right:-5px;
    top:210px
  }
  .floating-tag {
    left:-8px;
    top:41px
  }
  .art-orbit {
    width:400px;
    height:400px;
    left:0;
    top:38px
  }
  .orbit-two {
    width:300px;
    height:300px;
    left:50px;
    top:88px
  }
  .hero-actions {
    gap:19px
  }
  .hero-actions .button {
    gap:15px
  }
  .hero-description {
    max-width:340px
  }
  .about-grid {
    gap:45px
  }
  .services-grid .service-card {
    padding:24px 17px 18px
  }
  .service-card h3 {
    font-size:18px
  }
  .section-heading h2 {
    font-size:35px
  }
  .about h2 {
    font-size:29px
  }
}
@media(max-width:900px) {
  .container {
    width:calc(100% - 48px)
  }
  .site-header {
    height:80px
  }
  .brand {
    font-size:26px
  }
  .navigation {
    gap:18px;
    font-size:10px
  }
  .navigation .nav-contact {
    padding:10px 13px;
    gap:13px
  }
  .hero-grid {
    padding-top:58px;
    padding-bottom:55px;
    gap:16px
  }
  .hero h1 {
    font-size:57px;
    letter-spacing:-3px
  }
  .hero-copy .eyebrow {
    font-size:8px;
    letter-spacing:1.3px
  }
  .hero-description {
    font-size:12px;
    max-width:305px
  }
  .hero-actions {
    gap:17px
  }
  .hero-actions .text-link {
    font-size:10px;
    gap:8px
  }
  .hero-actions .button {
    padding:15px 14px;
    font-size:10px;
    gap:11px
  }
  .hero-art {
    height:405px;
    margin-left:8px
  }
  .browser-preview {
    width:320px;
    top:67px
  }
  .preview-content {
    padding:18px
  }
  .preview-main {
    margin-top:23px;
    margin-bottom:17px
  }
  .preview-main h2 {
    font-size:28px
  }
  .sculpture {
    transform:scale(.65);
    right:-6px;
    top:-15px
  }
  .preview-nav>span {
    font-size:5px
  }
  .floating-tag {
    font-size:7px;
    padding:8px 12px;
    top:31px
  }
  .tag-icon {
    font-size:24px
  }
  .floating-tag>span:last-child {
    font-size:14px;
    margin-left:8px
  }
  .mobile-preview {
    transform:rotate(8deg) scale(.85);
    transform-origin:right top;
    right:-2px;
    top:190px
  }
  .art-orbit {
    width:335px;
    height:335px;
    top:35px
  }
  .orbit-two {
    width:255px;
    height:255px;
    left:40px;
    top:75px
  }
  .art-label {
    font-size:6px;
    right:0;
    top:13px
  }
  .art-coordinate {
    font-size:5px;
    left:0
  }
  .expertise-strip .container {
    font-size:13px;
    gap:12px;
    padding-block:22px
  }
  .services-grid {
    grid-template-columns:repeat(2,1fr)
  }
  .service-card:nth-child(3) {
    border-left:0
  }
  .service-card:nth-child(n+3) {
    border-top:1px solid #dce1e9
  }
  .services-grid .service-card {
    padding:27px
  }
  .card-top {
    margin-bottom:26px
  }
  .service-card p {
    font-size:12px
  }
  .card-bottom {
    font-size:9px
  }
  .section-heading h2 {
    font-size:32px
  }
  .section-heading>p {
    font-size:10px
  }
  .about-grid {
    gap:30px
  }
  .about-art {
    height:385px;
    padding:24px
  }
  .about-word {
    font-size:55px;
    margin-top:35px
  }
  .about-asterisk {
    font-size:180px;
    bottom:53px
  }
  .about h2 {
    font-size:25px;
    letter-spacing:-1px
  }
  .about-copy .eyebrow {
    font-size:8px
  }
  .about-copy>p:not(.eyebrow) {
    font-size:11px
  }
  .about-values {
    font-size:9px;
    gap:13px 10px
  }
  .about {
    padding-block:75px
  }
  .process-grid {
    gap:25px
  }
  .process-grid h3 {
    font-size:14px
  }
  .process-grid p {
    font-size:10px
  }
  .footer-top {
    gap:35px
  }
}
@media(max-width:700px) {
  html {
    scroll-padding-top:84px
  }
  .container {
    width:calc(100% - 40px)
  }
  .site-header {
    height:76px
  }
  .header-inner {
    gap:15px
  }
  .brand {
    font-size:27px
  }
  .menu-toggle {
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    width:42px;
    height:42px;
    background:none;
    border:1px solid #52617b;
    border-radius:5px;
    padding:10px;
    z-index:2
  }
  .menu-toggle span {
    height:1px;
    width:20px;
    background:var(--paper);
    transition:transform .2s
  }
  .menu-toggle[aria-expanded=true] span:first-child {
    transform:translateY(3.5px) rotate(45deg)
  }
  .menu-toggle[aria-expanded=true] span:last-child {
    transform:translateY(-3.5px) rotate(-45deg)
  }
  .navigation {
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:75px;
    background:var(--dark);
    padding:20px;
    box-shadow:0 16px 30px #0005;
    border-bottom:1px solid var(--line);
    font-size:14px
  }
  .navigation.open {
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0
  }
  .navigation a {
    padding:16px 8px
  }
  .navigation a.active:not(.nav-contact):after {
    display:none
  }
  .navigation .nav-contact {
    margin-top:10px;
    justify-content:space-between;
    padding:15px
  }
  .hero-grid {
    grid-template-columns:1fr;
    padding-top:45px;
    padding-bottom:27px;
    gap:28px
  }
  .hero-copy .eyebrow {
    font-size:8px;
    letter-spacing:1.3px
  }
  .hero h1 {
    font-size:clamp(54px,11.8vw,78px);
    letter-spacing:-3px;
    margin-top:24px
  }
  .title-star {
    font-size:48px;
    margin-left:26px;
    margin-top:6px
  }
  .hero-description {
    font-size:13px;
    max-width:355px;
    margin-top:23px
  }
  .hero-actions {
    gap:26px;
    margin-top:26px
  }
  .hero-actions .button {
    padding:16px 18px;
    font-size:11px;
    gap:18px
  }
  .hero-actions .text-link {
    font-size:11px
  }
  .hero-note {
    margin-top:28px
  }
  .hero-art {
    height:415px;
    width:min(425px,100%);
    margin:5px auto 0
  }
  .browser-preview {
    width:calc(100% - 16px);
    top:69px;
    left:3px
  }
  .preview-main h2 {
    font-size:33px
  }
  .preview-content {
    padding:21px
  }
  .sculpture {
    transform:scale(.8);
    right:-4px;
    top:-5px
  }
  .mobile-preview {
    right:0;
    top:203px;
    transform:rotate(9deg) scale(.85)
  }
  .floating-tag {
    left:0;
    top:28px;
    font-size:8px
  }
  .art-label {
    top:13px;
    right:2px;
    font-size:6px
  }
  .art-orbit {
    width:330px;
    height:330px;
    left:15px;
    top:44px
  }
  .orbit-two {
    width:250px;
    height:250px;
    left:55px;
    top:84px
  }
  .art-coordinate {
    font-size:6px;
    bottom:0
  }
  .hero-bottom {
    padding-block:20px
  }
  .hero-bottom>span {
    font-size:6px;
    letter-spacing:.8px
  }
  .hero-bottom a {
    font-size:9px;
    gap:8px
  }
  .expertise-strip .container {
    justify-content:center;
    flex-wrap:wrap;
    gap:12px 16px;
    font-size:12px;
    padding-block:21px
  }
  .expertise-strip i {
    font-size:15px
  }
  .expertise-strip span:last-child,.expertise-strip i:nth-last-child(2) {
    display:none
  }
  .services {
    padding-block:57px 40px
  }
  .section-heading {
    display:block;
    margin-bottom:30px
  }
  .section-heading h2 {
    font-size:30px;
    letter-spacing:-1.3px
  }
  .section-heading .eyebrow {
    font-size:9px;
    margin-bottom:16px
  }
  .section-heading>p {
    font-size:12px;
    margin-top:22px
  }
  .section-heading>p br {
    display:none
  }
  .services-grid {
    grid-template-columns:1fr
  }
  .services-grid .service-card {
    padding:25px
  }
  .service-card+.service-card {
    border-left:0;
    border-top:1px solid #dce1e9
  }
  .card-top {
    margin-bottom:23px
  }
  .service-card h3 {
    font-size:22px
  }
  .service-card h3 br {
    display:none
  }
  .service-card p {
    font-size:12px;
    max-width:400px
  }
  .card-bottom {
    margin-top:22px;
    font-size:10px;
    padding-top:17px
  }
  .hosting-note {
    align-items:flex-start;
    font-size:10px;
    line-height:1.8;
    flex-wrap:wrap;
    gap:10px
  }
  .hosting-note p {
    flex:1;
    min-width:220px
  }
  .hosting-note strong {
    display:block
  }
  .hosting-note a {
    margin-left:27px
  }
  .about {
    padding-block:55px
  }
  .about-grid {
    grid-template-columns:1fr;
    gap:35px
  }
  .about-art {
    height:345px;
    max-width:440px
  }
  .about-word {
    font-size:59px;
    margin-top:22px
  }
  .about-asterisk {
    font-size:186px;
    right:0;
    bottom:25px
  }
  .about-art-top {
    font-size:7px
  }
  .about-copy .eyebrow {
    font-size:9px
  }
  .about h2 {
    font-size:30px;
    letter-spacing:-1.3px
  }
  .about-copy>p:not(.eyebrow) {
    font-size:12px
  }
  .about-values {
    font-size:11px;
    gap:19px 10px
  }
  .about-copy>.text-link {
    font-size:12px
  }
  .process {
    padding-block:55px
  }
  .process-grid {
    grid-template-columns:repeat(2,1fr);
    gap:27px 22px
  }
  .step-number {
    padding-bottom:21px;
    font-size:29px
  }
  .process-grid h3 {
    font-size:14px
  }
  .process-grid p {
    font-size:11px
  }
  .footer-top {
    flex-wrap:wrap;
    gap:22px;
    padding-block:30px
  }
  .footer-top>.brand {
    width:100%
  }
  .footer-top>p {
    font-size:10px
  }
  .footer-social {
    gap:18px;
    font-size:10px
  }
  .footer-bottom {
    flex-wrap:wrap;
    gap:14px;
    font-size:8px;
    padding-bottom:29px
  }
  .footer-bottom>span:first-child {
    width:100%
  }
  .footer-bottom>a {
    margin-left:auto;
    margin-right:46px
  }
  .whatsapp-float {
    width:44px;
    height:44px;
    font-size:25px;
    right:15px;
    bottom:15px
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*:before,*:after {
    transition:none!important;
    animation:none!important
  }
}
