:root {
  --ink: #101014;
  --ink-soft: #25252c;
  --paper: #f4f1eb;
  --paper-bright: #fbfaf7;
  --line: rgba(16, 16, 20, 0.14);
  --muted: #5f5c63;
  --coral: #ff4d44;
  --coral-dark: #b52229;
  --violet: #7b5cff;
  --blue: #45a6ff;
  --green: #4cd08a;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.13em;
}

.brand small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  font-size: 14px;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: #fff;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.main-nav > a:hover,
.main-nav > a.is-active {
  color: #fff;
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.17);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #101014;
  background-size: 72px 72px;
  color: #fff;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.24));
  content: "";
  pointer-events: none;
}

.hero-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-ambient-one {
  top: 7%;
  right: 6%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(123, 92, 255, 0.32), transparent 68%);
  animation: ambientFloat 9s ease-in-out infinite;
}

.hero-ambient-two {
  right: 37%;
  bottom: -22%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 77, 68, 0.2), transparent 68%);
  animation: ambientFloat 12s ease-in-out -4s infinite reverse;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  min-height: 780px;
  padding-top: var(--header-height);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(76, 208, 138, 0.1);
}

.hero h1,
.catalog-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 7.2vw, 104px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #ff766e 0%, #c988ff 48%, #62c7ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.closing-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(110deg, var(--coral), var(--coral-dark));
  box-shadow: 0 18px 50px rgba(255, 77, 68, 0.24);
}

.button-primary:hover {
  box-shadow: 0 22px 58px rgba(255, 77, 68, 0.34);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.11);
}

.hero-signals {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-signals span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-signals span::before {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
}

.hero-stage {
  position: relative;
  min-height: 510px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.orbit-one {
  inset: -3% 1% 2% 3%;
  animation: orbitPulse 6s ease-in-out infinite;
}

.orbit-two {
  inset: 8% 12% 12% 13%;
  border-color: rgba(123, 92, 255, 0.15);
  animation: orbitPulse 6s ease-in-out -3s infinite;
}

.call-card {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(100%, 500px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(35, 35, 43, 0.96), rgba(18, 18, 24, 0.92));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(28px);
  transform: translate(-50%, -50%) rotate(1.5deg);
  transition:
    transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 300ms ease;
}

.hero-stage:hover .call-card {
  border-color: rgba(255, 255, 255, 0.24);
  transform: translate(-50%, -52%) rotate(0deg);
}

.call-card-head,
.conversation,
.appointment-result,
.product-lockup {
  display: flex;
  align-items: center;
}

.call-card-head {
  justify-content: space-between;
  gap: 20px;
}

.product-lockup {
  gap: 12px;
}

.receptia-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: linear-gradient(135deg, #814dff, #ff516e);
  box-shadow: 0 12px 34px rgba(123, 92, 255, 0.25);
  font-weight: 800;
}

.product-lockup strong,
.product-lockup small {
  display: block;
}

.product-lockup strong {
  font-size: 15px;
}

.product-lockup small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #97eaba;
  background: rgba(76, 208, 138, 0.1);
  font-size: 11px;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(76, 208, 138, 0.08);
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 145px;
  margin: 17px 0;
  overflow: hidden;
}

.waveform span {
  width: 5px;
  max-height: 92px;
  min-height: 10px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--violet), #d594ff);
  animation: waveform 1.15s ease-in-out infinite alternate;
}

.conversation {
  gap: 13px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.conversation-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: rgba(123, 92, 255, 0.18);
  color: #cdbfff;
  font-size: 13px;
  font-weight: 700;
}

.conversation span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.conversation p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.45;
}

.appointment-result {
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.result-check {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: #95e8b8;
  background: rgba(76, 208, 138, 0.1);
  font-size: 13px;
}

.appointment-result strong,
.appointment-result small {
  display: block;
}

.appointment-result strong {
  font-size: 12px;
}

.appointment-result small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.appointment-result > span {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(17, 17, 22, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  font-size: 11px;
  animation: chipFloat 4s ease-in-out infinite;
}

.floating-chip span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 10px;
  font-weight: 700;
}

.floating-chip-top {
  top: 7%;
  right: 2%;
}

.floating-chip-bottom {
  bottom: 5%;
  left: 0;
  animation-delay: -2s;
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll span {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.reveal {
  opacity: 0;
  animation: revealUp 700ms cubic-bezier(0.18, 0.8, 0.25, 1) forwards;
}

.reveal-one {
  animation-delay: 100ms;
}

.reveal-two {
  animation-delay: 180ms;
}

.reveal-three {
  animation-delay: 280ms;
}

.reveal-four {
  animation-delay: 380ms;
}

.brand-strip {
  position: relative;
  z-index: 3;
  padding: 54px 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 120%, rgba(255, 181, 163, 0.36), transparent 42%),
    linear-gradient(135deg, #ec554c 0%, #f26b59 48%, #dc453f 100%);
}

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

.principle-grid article {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 24px 45px rgba(113, 24, 19, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(16px);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.principle-grid article::after {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  bottom: -55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.principle-grid article:hover {
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.29), rgba(255, 255, 255, 0.11));
  box-shadow:
    0 32px 60px rgba(113, 24, 19, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  transform: translateY(-8px);
}

.principle-grid article > i {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.principle-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 36px 0 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  color: #ffddd5;
  background: rgba(74, 10, 8, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.principle-grid strong {
  display: block;
  max-width: 220px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.principle-grid p {
  max-width: 230px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: clamp(90px, 11vw, 150px) 0;
}

.receptia-section {
  overflow: hidden;
  background: var(--paper-bright);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.section-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 10px;
}

.section-kicker {
  margin: 25px 0 17px;
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2,
.catalog-support h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  margin: 45px 0 35px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.feature-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list > div > span {
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 700;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  transition: gap 180ms ease;
}

.text-link:hover {
  gap: 17px;
}

.product-visual {
  position: relative;
  min-height: 670px;
}

.product-visual::before {
  position: absolute;
  inset: 7% -22% -6% 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 30%, rgba(123, 92, 255, 0.27), transparent 46%),
    radial-gradient(circle at 70% 70%, rgba(255, 77, 68, 0.2), transparent 48%),
    #19191f;
  content: "";
}

.phone {
  position: absolute;
  overflow: hidden;
  width: 265px;
  padding: 0;
  border: 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: 0 42px 100px rgba(16, 16, 20, 0.25);
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.phone::before {
  display: none;
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  object-fit: contain;
}

.phone-back {
  z-index: 1;
  top: 5%;
  right: 4%;
  transform: rotate(7deg);
}

.phone-front {
  z-index: 2;
  bottom: 3%;
  left: 4%;
  transform: rotate(-5deg);
}

.product-visual:hover .phone-back {
  transform: translate(8px, -8px) rotate(4deg);
}

.product-visual:hover .phone-front {
  transform: translate(-8px, 8px) rotate(-2deg);
}

.visual-note {
  position: absolute;
  z-index: 4;
  right: -2%;
  bottom: 10%;
  width: 230px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #fff;
  background: rgba(22, 22, 28, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
}

.visual-note span,
.visual-note strong {
  display: block;
}

.visual-note span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-note strong {
  font-size: 13px;
  line-height: 1.45;
}

.compatibility-strip {
  overflow: hidden;
  padding: clamp(70px, 8vw, 105px) 0;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 77, 68, 0.08), transparent 32%),
    #f4f1eb;
}

.compatibility-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 80px;
  margin-bottom: 42px;
}

.compatibility-heading .section-kicker {
  margin-top: 0;
}

.compatibility-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.compatibility-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.compatibility-marquee {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 18px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.compatibility-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: compatibilityMarquee 38s linear infinite;
}

.compatibility-marquee:hover .compatibility-track {
  animation-play-state: paused;
}

.compatibility-set {
  display: flex;
  flex: none;
  gap: 18px;
  margin: 0;
  padding: 0 18px 0 0;
  list-style: none;
}

.compatibility-logo {
  display: flex;
  min-width: 205px;
  min-height: 88px;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(16, 16, 20, 0.1);
  border-radius: 22px;
  color: rgba(16, 16, 20, 0.7);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(16, 16, 20, 0.06);
  transition:
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.compatibility-logo img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  filter: grayscale(1) contrast(0.85);
  opacity: 0.58;
  transition:
    filter 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.compatibility-logo span {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.compatibility-logo:hover {
  border-color: rgba(16, 16, 20, 0.16);
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(16, 16, 20, 0.11);
  transform: translateY(-4px);
}

.compatibility-logo:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.08);
}

.apps-preview {
  background: #e9e5dd;
}

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

.section-heading h2 {
  max-width: 790px;
}

.section-heading-side p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.app-feature-card {
  position: relative;
  min-height: 470px;
  padding: 22px;
  overflow: hidden;
  background: var(--paper);
  transition:
    background 240ms ease,
    transform 240ms ease;
}

.app-feature-card:hover {
  z-index: 2;
  background: var(--paper-bright);
  transform: translateY(-8px);
}

.app-index {
  color: var(--muted);
  font-size: 10px;
}

.app-image-wrap {
  width: 170px;
  height: 170px;
  margin: 45px auto 38px;
  overflow: hidden;
  border-radius: 38px;
  box-shadow: 0 24px 55px rgba(16, 16, 20, 0.16);
  transition: transform 300ms ease;
}

.app-feature-card:hover .app-image-wrap {
  transform: rotate(-2deg) scale(1.04);
}

.app-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-feature-content > span {
  color: var(--coral-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-feature-content h3 {
  margin: 8px 0 10px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.app-feature-content p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.app-arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.app-feature-card:hover .app-arrow {
  color: #fff;
  background: var(--ink);
  transform: rotate(10deg);
}

.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.catalog-cta p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  color: var(--muted);
}

.catalog-cta p span {
  color: var(--ink);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.manifesto {
  background: var(--paper-bright);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 60px;
}

.manifesto-copy h2 {
  max-width: 980px;
}

.manifesto-copy h2 em {
  color: var(--coral-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.manifesto-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 770px;
  margin: 55px 0 0 auto;
}

.manifesto-columns p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(95px, 13vw, 180px) 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 77, 68, 0.24), transparent 30%),
    radial-gradient(circle at 82% 30%, rgba(123, 92, 255, 0.27), transparent 34%),
    #111116;
  color: #fff;
  text-align: center;
}

.closing-grid,
.catalog-hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
}

.closing-content {
  position: relative;
  z-index: 2;
}

.closing-content > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.closing-content h2 {
  max-width: 850px;
  margin: 23px auto 0;
}

.closing-actions {
  justify-content: center;
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  padding: 76px 0 28px;
  background: #0c0c0f;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.25fr;
  gap: 100px;
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.brand-footer strong {
  font-size: 20px;
  font-weight: 800;
}

.footer-brand p {
  max-width: 330px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.625;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 20px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 65px;
  padding: 22px 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}

.footer-made-in {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-flag {
  width: 18px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.24);
}

/* Applications page */

.catalog-hero {
  position: relative;
  min-height: 610px;
  padding-top: var(--header-height);
  overflow: hidden;
  background: #111116;
  color: #fff;
}

.catalog-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.catalog-orb-one {
  top: -35%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 77, 68, 0.24), transparent 66%);
}

.catalog-orb-two {
  right: -10%;
  bottom: -55%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(123, 92, 255, 0.28), transparent 65%);
}

.catalog-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 90px;
  min-height: 460px;
  padding-block: 70px;
}

.catalog-hero h1 {
  max-width: 880px;
  font-size: clamp(58px, 7.5vw, 105px);
}

.catalog-hero-inner > p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 17px;
  line-height: 1.7;
}

.catalog-ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 68px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.catalog-ticker > div {
  display: flex;
  align-items: center;
  gap: 36px;
  min-width: max-content;
  animation: ticker 22s linear infinite;
}

.catalog-ticker i {
  color: var(--coral);
  font-style: normal;
}

.catalog-body {
  padding: 70px 0 120px;
  background: var(--paper);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.filter-group {
  display: flex;
  gap: 8px;
}

.filter-group button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.filter-group button:hover,
.filter-group button.is-selected {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.catalog-toolbar > span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.catalog-card {
  --accent-card: #7960ff;
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1.14fr);
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-bright);
  animation: catalogReveal 450ms both;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.catalog-card:hover {
  box-shadow: 0 28px 70px rgba(16, 16, 20, 0.11);
  transform: translateY(-6px);
}

.catalog-card-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--accent-card) 32%, transparent), transparent 42%),
    #18181e;
}

.catalog-card-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.catalog-card-visual img {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.34);
  transition: transform 260ms ease;
}

.catalog-card:hover .catalog-card-visual img {
  transform: rotate(-3deg) scale(1.05);
}

.catalog-card-number {
  position: absolute;
  z-index: 3;
  top: 19px;
  left: 19px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.catalog-card-visual > span {
  position: absolute;
  z-index: 3;
  right: 17px;
  bottom: 17px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card-content {
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.catalog-meta {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.catalog-meta span + span::before {
  margin-right: 9px;
  content: "·";
}

.catalog-card h2 {
  margin: 42px 0 14px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.catalog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.catalog-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.catalog-card-link span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  transition: transform 180ms ease;
}

.catalog-card:hover .catalog-card-link span {
  transform: rotate(10deg);
}

.accent-green {
  --accent-card: #38d985;
}

.accent-red {
  --accent-card: #ff465d;
}

.accent-blue {
  --accent-card: #47a8ff;
}

.accent-orange {
  --accent-card: #ff9d42;
}

.accent-yellow {
  --accent-card: #f8d34b;
}

.accent-cyan {
  --accent-card: #4fd4d7;
}

.accent-pink {
  --accent-card: #ff79ac;
}

.accent-rose {
  --accent-card: #f66077;
}

.accent-navy {
  --accent-card: #5475d9;
}

.catalog-support {
  padding: 100px 0;
  background: #ded8cd;
}

.catalog-support-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 100px;
}

.catalog-support h2 {
  max-width: 720px;
  margin-top: 28px;
}

.catalog-support p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

/* Interior pages */
.app-detail-hero,
.about-hero,
.contact-page {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 75% 32%, color-mix(in srgb, var(--accent-card, #7856ff) 26%, transparent), transparent 34%),
    #101014;
}

.app-detail-hero {
  min-height: 900px;
  padding: calc(var(--header-height) + 90px) 0 100px;
}

.detail-grid,
.about-hero-grid,
.contact-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.app-detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: 72px;
  min-height: 690px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 58px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-link:hover {
  color: white;
}

.app-detail-copy h1,
.about-hero h1,
.contact-copy h1 {
  margin: 25px 0;
  font-size: clamp(64px, 8vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.app-detail-copy > p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
}

.app-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.button-disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.download-note {
  margin: 18px 0 0 !important;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-detail-visual {
  display: grid;
  place-items: center;
}

.device-carousel {
  position: relative;
  display: grid;
  width: min(390px, 100%);
  place-items: center;
}

.iphone-device {
  position: relative;
  width: min(302px, 72vw);
  aspect-ratio: 71.6 / 147.6;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 54px;
  background:
    linear-gradient(135deg, #666770 0%, #17171b 15%, #050506 50%, #35353b 86%, #777781 100%);
  box-shadow:
    0 55px 110px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.09),
    inset 0 0 0 2px rgba(0, 0, 0, 0.82);
  isolation: isolate;
}

.iphone-device::after {
  position: absolute;
  z-index: -1;
  inset: 7% -24%;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-card, #7856ff) 27%, transparent);
  filter: blur(54px);
  content: "";
}

.iphone-screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 45px;
  background: #08080a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.iphone-screen-track {
  display: flex;
  overflow-x: auto;
  width: 100%;
  height: 100%;
  cursor: grab;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
}

.iphone-screen-track::-webkit-scrollbar {
  display: none;
}

.iphone-screen-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.iphone-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #0b0b0d;
}

.iphone-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iphone-slide-placeholder {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 13px;
  padding: 34px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--accent-card, #7856ff) 38%, transparent), transparent 38%),
    linear-gradient(160deg, #17171d, #09090c);
}

.iphone-slide.iphone-slide-placeholder img {
  width: 112px;
  height: 112px;
  border-radius: 27%;
  object-fit: cover;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.42);
}

.iphone-slide-placeholder strong {
  margin-top: 7px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.iphone-slide-placeholder span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.iphone-island {
  position: absolute;
  z-index: 5;
  top: 11px;
  left: 50%;
  width: 96px;
  height: 29px;
  border-radius: 18px;
  background: #050505;
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  transform: translateX(-50%);
}

.iphone-island span {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1c2960, #050509 65%);
}

.iphone-home-indicator {
  position: absolute;
  z-index: 5;
  bottom: 8px;
  left: 50%;
  width: 92px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
  mix-blend-mode: difference;
  pointer-events: none;
  transform: translateX(-50%);
}

.iphone-button {
  position: absolute;
  left: -4px;
  width: 4px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(to bottom, #777881, #202026 20%, #19191e 80%, #676871);
}

.iphone-button-silent {
  top: 91px;
  height: 29px;
}

.iphone-button-volume-up {
  top: 140px;
  height: 58px;
}

.iphone-button-volume-down {
  top: 211px;
  height: 58px;
}

.iphone-button-power {
  top: 164px;
  right: -4px;
  left: auto;
  width: 4px;
  height: 91px;
  border-radius: 0 3px 3px 0;
}

.device-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 27px;
}

.device-carousel-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.device-carousel-arrow:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.device-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.device-carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.device-carousel-dot.is-active {
  width: 23px;
  border-radius: 5px;
  background: white;
}

.device-swipe-hint {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-detail-icon {
  position: relative;
  display: grid;
  width: min(360px, 78vw);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 42%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 42%),
    color-mix(in srgb, var(--accent-card, #7856ff) 56%, #141419);
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: rotate(4deg);
}

.app-detail-icon::before {
  position: absolute;
  inset: -38px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.app-detail-icon img {
  width: 64%;
  aspect-ratio: 1;
  border-radius: 25%;
  object-fit: cover;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  transform: rotate(-4deg);
}

.app-detail-visual > span {
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.app-detail-body,
.about-story {
  padding: 130px 0;
  background: var(--paper);
}

.detail-content-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 110px;
}

.detail-content-grid h2,
.about-story-grid h2 {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.detail-highlights {
  border-top: 1px solid var(--line);
}

.detail-highlights > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.detail-highlights span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.detail-highlights p {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 29px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.detail-next {
  padding: 85px 0;
  background: #ded8cd;
}

.detail-next-dark {
  color: white;
  background: var(--ink);
}

.detail-next-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.detail-next-inner span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-next-inner h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.about-hero {
  min-height: 740px;
  padding: calc(var(--header-height) + 120px) 0 110px;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  max-width: 1050px;
}

.about-hero p {
  max-width: 660px;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.55;
}

.about-story-grid > div:last-child > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.72;
}

.values-section {
  padding: 0 0 130px;
  background: var(--paper);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.values-grid article {
  min-height: 320px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-grid article > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.values-grid h2 {
  margin: 95px 0 14px;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.values-grid p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-page {
  min-height: 820px;
  padding: calc(var(--header-height) + 100px) 0 110px;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.7fr);
  align-items: center;
  gap: 110px;
}

.contact-copy h1 {
  max-width: 850px;
  font-size: clamp(62px, 7vw, 104px);
}

.contact-copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.6;
}

.contact-card {
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.contact-card-label {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card > a:not(.button):not(.text-link) {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 750;
  letter-spacing: -0.04em;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.contact-card .button {
  margin-top: 14px;
}

.contact-separator {
  height: 1px;
  margin: 38px 0;
  background: rgba(255, 255, 255, 0.13);
}

.text-link-light {
  color: white;
}

.contact-shortcuts {
  padding: 90px 0;
  background: var(--paper);
}

.shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.shortcuts-grid > a {
  position: relative;
  min-height: 230px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.shortcuts-grid > a:hover {
  color: white;
  background: var(--ink);
}

.shortcuts-grid span {
  display: block;
  margin-bottom: 75px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shortcuts-grid strong {
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.shortcuts-grid i {
  position: absolute;
  right: 38px;
  bottom: 38px;
  font-size: 25px;
  font-style: normal;
}

.not-found {
  display: grid;
  min-height: 760px;
  padding-top: var(--header-height);
  place-items: center;
  color: white;
  text-align: center;
  background: var(--ink);
}

.not-found-inner > span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.not-found h1 {
  margin: 22px 0;
  font-size: clamp(50px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.not-found p {
  max-width: 560px;
  margin: 0 auto 35px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 19px;
  line-height: 1.6;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-25px, 18px, 0) scale(1.06);
  }
}

@keyframes waveform {
  from {
    transform: scaleY(0.62);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes compatibilityMarquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes catalogReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 150px 90px;
  }

  .hero-stage {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle-grid article {
    min-height: 230px;
  }

  .product-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .app-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-hero-inner {
    grid-template-columns: 1fr;
    gap: 35px;
    align-content: center;
  }

  .catalog-hero-inner > p {
    max-width: 600px;
  }

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

  .app-detail-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .app-detail-visual {
    margin-top: 40px;
  }

  .app-detail-hero {
    min-height: 0;
  }

  .contact-layout {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 32px, 1240px);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(17, 17, 22, 0.96);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    padding: 14px 12px;
  }

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

  .nav-cta {
    justify-content: space-between;
    margin-top: 5px;
    border-radius: 14px;
  }

  .hero h1,
  .catalog-hero h1 {
    font-size: clamp(52px, 15vw, 78px);
  }

  .hero-scroll {
    display: none;
  }

  .section-heading,
  .compatibility-heading,
  .manifesto-grid,
  .catalog-support-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .manifesto-columns {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .detail-content-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .values-grid article {
    min-height: 250px;
  }

  .values-grid h2 {
    margin-top: 58px;
  }
}

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

  .hero-grid {
    min-height: auto;
    padding-top: 125px;
  }

  .hero-stage {
    min-height: 470px;
  }

  .call-card {
    padding: 20px;
  }

  .floating-chip {
    display: none;
  }

  .waveform {
    gap: 5px;
    height: 110px;
  }

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

  .principle-grid article {
    min-height: 220px;
  }

  .compatibility-heading {
    margin-bottom: 28px;
  }

  .compatibility-marquee {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }

  .compatibility-logo {
    min-width: 178px;
    min-height: 78px;
    padding: 17px 20px;
  }

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

  .phone {
    width: 220px;
  }

  .phone-back {
    right: 0;
  }

  .phone-front {
    left: 0;
  }

  .visual-note {
    right: 0;
    bottom: 1%;
  }

  .app-feature-grid {
    grid-template-columns: 1fr;
  }

  .catalog-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-cta p {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .catalog-card-visual {
    min-height: 300px;
  }

  .catalog-card-content {
    min-height: 280px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 0;
  }

  .app-detail-hero {
    padding-top: calc(var(--header-height) + 60px);
  }

  .back-link {
    margin-bottom: 42px;
  }

  .app-detail-copy h1,
  .about-hero h1,
  .contact-copy h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .app-detail-icon {
    width: min(280px, 72vw);
  }

  .iphone-device {
    width: min(278px, 76vw);
  }

  .detail-next-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card {
    padding: 28px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .compatibility-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .compatibility-track {
    animation: none !important;
    transform: none !important;
  }

  .compatibility-set[aria-hidden="true"] {
    display: none;
  }
}

/* WordPress integration */
html {
  margin: 0 !important;
}

body.admin-bar .site-header {
  top: 32px;
}

.skip-link {
  position: fixed;
  z-index: 99999;
  top: -100px;
  left: 20px;
  padding: 12px 18px;
  color: white;
  background: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

.main-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav-list a {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav-list a::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.main-nav-list a:hover,
.main-nav-list .current-menu-item > a,
.main-nav-list .current_page_item > a {
  color: white;
}

.main-nav-list a:hover::after,
.main-nav-list .current-menu-item > a::after,
.main-nav-list .current_page_item > a::after {
  opacity: 1;
  transform: scaleX(1);
}

[hidden] {
  display: none !important;
}

.entry-rich,
.standard-content,
.article-body {
  color: #37363c;
  font-size: 18px;
  line-height: 1.82;
}

.entry-rich > *:first-child,
.standard-content > *:first-child,
.article-body > *:first-child {
  margin-top: 0;
}

.entry-rich h2,
.entry-rich h3,
.standard-content h2,
.standard-content h3,
.article-body h2,
.article-body h3 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.entry-rich a,
.standard-content a,
.article-body a {
  color: #5c45d8;
  text-decoration: underline;
  text-decoration-color: rgba(92, 69, 216, 0.3);
  text-underline-offset: 4px;
}

/* Modern contact page */
.contact-page {
  min-height: 0;
  padding: 0;
  overflow: visible;
  color: var(--ink);
  background: var(--paper);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 95px) 0 90px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 28%, rgba(123, 92, 255, 0.29), transparent 34%),
    radial-gradient(circle at 16% 86%, rgba(255, 77, 68, 0.2), transparent 32%),
    #101014;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.contact-hero h1 {
  margin: 25px 0 0;
  font-size: clamp(68px, 9vw, 126px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.contact-hero-inner > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 19px;
  line-height: 1.7;
}

.contact-form-section {
  padding: clamp(80px, 10vw, 135px) 0;
  background: var(--paper);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: start;
  gap: clamp(65px, 9vw, 130px);
}

.contact-information {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.contact-information .section-kicker {
  margin-top: 0;
}

.contact-information h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 4.8vw, 66px);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.055em;
}

.contact-information > p:not(.section-kicker):not(.contact-response-note) {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.contact-methods {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.contact-methods > * {
  display: grid;
  gap: 5px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.contact-methods span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 16px;
  line-height: 1.5;
}

.contact-methods a:hover strong {
  color: var(--coral-dark);
}

.contact-response-note {
  margin: 26px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--coral);
  color: var(--muted);
  background: rgba(255, 77, 68, 0.055);
  font-size: 13px;
  line-height: 1.65;
}

.contact-response-note strong {
  color: var(--ink);
}

.contact-form-panel {
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper-bright);
  box-shadow: 0 32px 90px rgba(18, 18, 24, 0.09);
}

.contact-form-heading {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.contact-form-heading > span {
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-heading h2 {
  margin: 13px 0 9px;
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact-form-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-form-panel .wpcf7-form {
  display: grid;
  gap: 21px;
  margin-top: 28px;
}

.contact-form-panel .wpcf7-form > p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-form-panel .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.contact-form-panel input[type="text"],
.contact-form-panel input[type="email"],
.contact-form-panel input[type="tel"],
.contact-form-panel input[type="url"],
.contact-form-panel textarea,
.contact-form-panel select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d8d4cd;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form-panel textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus,
.contact-form-panel select:focus {
  border-color: #7a60f5;
  box-shadow: 0 0 0 4px rgba(122, 96, 245, 0.11);
}

.contact-form-panel .wpcf7-list-item {
  margin: 0;
}

.contact-form-panel .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-weight: 500;
}

.contact-form-panel input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #7054ed;
}

.contact-form-panel input[type="submit"] {
  min-height: 52px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-form-panel input[type="submit"]:hover {
  background: #6b51e8;
  transform: translateY(-2px);
}

.contact-form-panel input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.contact-form-panel .wpcf7-spinner {
  margin: 0 0 0 12px;
}

.contact-form-panel .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #bc2f38;
  font-size: 12px;
}

.contact-form-panel .wpcf7-response-output {
  margin: 0 !important;
  padding: 13px 15px !important;
  border-width: 1px !important;
  border-radius: 10px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .contact-hero-inner,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero-inner {
    gap: 38px;
  }

  .contact-information {
    position: static;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: calc(var(--header-height) + 62px) 0 65px;
  }

  .contact-form-section {
    padding: 66px 0;
  }

  .contact-form-panel {
    padding: 27px 22px;
    border-radius: 20px;
  }
}

.blog-hero,
.single-post-hero,
.standard-page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 100px) 0 100px;
  color: white;
  background:
    radial-gradient(circle at 78% 34%, rgba(109, 76, 255, 0.28), transparent 34%),
    var(--ink);
}

.blog-hero .container,
.single-post-heading,
.standard-page-hero .container {
  position: relative;
  z-index: 1;
}

.blog-hero h1,
.single-post-hero h1,
.standard-page-hero h1 {
  max-width: 1040px;
  margin: 28px 0;
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.blog-hero p,
.single-post-heading > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 21px;
  line-height: 1.65;
}

.blog-listing {
  padding: 110px 0 140px;
  background: var(--paper);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 50px rgba(25, 22, 18, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.post-card:hover {
  box-shadow: 0 28px 65px rgba(25, 22, 18, 0.13);
  transform: translateY(-6px);
}

.post-card-image {
  display: grid;
  height: 320px;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  background:
    linear-gradient(135deg, rgba(242, 92, 80, 0.68), rgba(108, 72, 247, 0.72)),
    #18171d;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.04);
}

.post-card-content {
  padding: 34px;
}

.post-meta {
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-meta a {
  color: inherit;
}

.post-card h2 {
  margin: 17px 0 14px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.post-card h2 a {
  color: var(--ink);
}

.post-card p {
  color: var(--muted);
  line-height: 1.65;
}

.pagination {
  margin-top: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links .page-numbers {
  display: grid;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-links .current,
.nav-links .page-numbers:hover {
  color: white;
  background: var(--ink);
}

.single-featured {
  position: relative;
  z-index: 2;
  margin-top: -55px;
}

.single-featured img {
  width: 100%;
  max-height: 680px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 35px 90px rgba(17, 17, 22, 0.22);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 320px);
  justify-content: center;
  gap: 90px;
  padding-top: 100px;
  padding-bottom: 140px;
}

.article-body {
  font-size: 19px;
}

.article-body h2 {
  margin-top: 60px;
  font-size: 42px;
}

.article-body h3 {
  margin-top: 45px;
  font-size: 30px;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.article-layout aside {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f3efe7;
}

.article-layout aside p {
  color: var(--muted);
  line-height: 1.6;
}

.standard-content {
  max-width: 900px;
  padding-top: 100px;
  padding-bottom: 130px;
}

/* WooCommerce */
.commerce-main {
  min-height: 700px;
  padding: calc(var(--header-height) + 80px) 0 120px;
  background:
    linear-gradient(to bottom, #15141a 0, #15141a 380px, var(--paper) 380px);
}

.commerce-container {
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: white;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.22);
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce div.product {
  display: flow-root;
}

.woocommerce div.product .corandar-product-device-gallery {
  float: left;
  width: 48%;
  margin: 0 4% 42px 0;
  padding: clamp(28px, 4vw, 52px) 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 50% 28%, rgba(120, 86, 255, 0.22), transparent 34%),
    linear-gradient(150deg, #17151f, #09090c 68%);
  box-shadow: 0 34px 80px rgba(14, 12, 22, 0.25);
}

.corandar-product-device-heading {
  margin: 0 auto 30px;
  text-align: center;
}

.corandar-product-device-heading span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.woocommerce .corandar-product-device-heading h2 {
  max-width: 420px;
  margin: 8px auto 0;
  color: white;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.02;
}

.device-carousel--product {
  margin-inline: auto;
}

.corandar-product-device-meta {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.corandar-product-device-link {
  display: block;
  width: fit-content;
  margin: 15px auto 0;
  color: white;
  font-size: 13px;
  font-weight: 750;
}

.corandar-product-device-link:hover {
  color: #ff6c5c;
}

.woocommerce div.product .product_title,
.woocommerce-products-header__title,
.woocommerce h1,
.woocommerce h2 {
  color: var(--ink);
  letter-spacing: -0.045em;
}

.woocommerce div.product .product_title {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--coral);
  font-size: 28px;
  font-weight: 800;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: white;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  background: var(--ink);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  color: white;
  background: var(--coral);
  transform: translateY(-2px);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfaf7;
}

.woocommerce ul.products li.product a img {
  border-radius: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 25px;
}

.woocommerce ul.products li.product .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
}

.woocommerce ul.products li.product .added_to_cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 14px;
  padding: 0 22px;
  border-radius: 999px;
  color: white;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background: var(--ink);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.woocommerce ul.products li.product .added_to_cart:hover {
  color: white;
  background: var(--coral);
  transform: translateY(-2px);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce select,
.select2-container .select2-selection--single {
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.woocommerce table.shop_table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.woocommerce-checkout #payment {
  border-radius: 18px;
  background: #f2eee7;
}

.scroll-to-top {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 999;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(14, 14, 17, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-to-top:hover {
  background: var(--coral);
  box-shadow: 0 14px 34px rgba(255, 76, 67, 0.35);
  transform: translateY(-2px);
}

.scroll-to-top:focus-visible {
  outline: 3px solid rgba(255, 76, 67, 0.36);
  outline-offset: 4px;
}

@media (max-width: 820px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .main-nav-list {
    display: grid;
    gap: 0;
  }

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

  .main-nav-list a::after {
    display: none;
  }

  .posts-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-layout {
    gap: 45px;
  }

  .article-layout aside {
    position: static;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commerce-container {
    padding: 28px;
  }

  .woocommerce div.product .corandar-product-device-gallery {
    float: none;
    width: 100%;
    margin: 0 0 36px;
  }
}

@media (max-width: 620px) {
  .scroll-to-top {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
  }

  .blog-hero h1,
  .single-post-hero h1,
  .standard-page-hero h1 {
    font-size: clamp(50px, 15vw, 76px);
  }

  .post-card-image {
    height: 230px;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .commerce-container {
    width: min(100% - 20px, 1240px);
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-to-top {
    transition:
      opacity 120ms linear,
      visibility 120ms linear,
      background 120ms linear;
  }
}
