:root {
  --color-bg: #ffffff;
  --color-bg-soft: #fff5f1;
  --color-surface: #ffffff;
  --color-surface-soft: #fff8f5;
  --color-card: rgba(255, 255, 255, 0.82);
  --color-primary: #ff3d2e;
  --color-primary-dark: #d92318;
  --color-orange: #ff7a1a;
  --color-orange-soft: #ffb020;
  --color-text: #17171a;
  --color-muted: #666a73;
  --color-border: rgba(23, 23, 26, 0.12);
  --color-border-strong: rgba(255, 61, 46, 0.28);
  --gradient-main: linear-gradient(135deg, #ff2d2d 0%, #ff6a1a 54%, #ffb020 100%);
  --gradient-soft: linear-gradient(135deg, rgba(255, 61, 46, 0.12), rgba(255, 122, 26, 0.1), rgba(255, 176, 32, 0.12));
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Space Grotesk", Arial, sans-serif;
  --max: 1180px;
  --header: 76px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --shadow-soft: 0 24px 70px rgba(120, 39, 15, 0.14);
  --shadow-glow: 0 24px 80px rgba(255, 93, 34, 0.18), 0 10px 34px rgba(23, 23, 26, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-text);
  background:
    linear-gradient(115deg, rgba(255, 61, 46, 0.09), transparent 28%),
    linear-gradient(245deg, rgba(255, 176, 32, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fff8f5 46%, #ffffff 100%);
  font-family: var(--font-body);
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 93, 34, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 93, 34, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 78%);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 26, 0.42);
  outline-offset: 4px;
}

p {
  color: var(--color-muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--color-text);
}

h1 {
  max-width: 790px;
  font-size: 5.25rem;
}

h2 {
  font-size: 3.45rem;
}

h3 {
  font-size: 1.35rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(23, 23, 26, 0.08);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 34px rgba(120, 39, 15, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--color-text);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 61, 46, 0.22);
  border-radius: 15px;
  background: var(--gradient-main);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(255, 61, 46, 0.25);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.brand-mark i,
.brand-mark span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-copy small {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-inline: auto;
}

.site-nav a,
.footer-links a {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a:focus-visible {
  color: var(--color-primary-dark);
  border-color: rgba(255, 61, 46, 0.18);
  background: rgba(255, 122, 26, 0.08);
}

.header-cta,
.footer-store {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(255, 61, 46, 0.2);
  border-radius: 999px;
  background: var(--gradient-main);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(255, 93, 34, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.footer-store:hover,
.app-store-button:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:hover,
.footer-store:hover,
.app-store-button:hover {
  box-shadow: 0 22px 48px rgba(255, 93, 34, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--color-text);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(120, 39, 15, 0.08);
}

.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(410px, 1.05fr);
  gap: 58px;
  align-items: center;
  padding: 74px 0 104px;
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 9% -6% auto 42%;
  z-index: -1;
  height: 62%;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 61, 46, 0.18), rgba(255, 122, 26, 0.13), rgba(255, 176, 32, 0.16));
  transform: rotate(-5deg);
}

.home-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 12%;
  z-index: -1;
  width: 64%;
  height: 176px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 61, 46, 0.24), rgba(255, 122, 26, 0.18), transparent),
    repeating-linear-gradient(90deg, rgba(255, 61, 46, 0.18) 0 72px, transparent 72px 98px);
  opacity: 0.48;
  transform: skewY(-10deg);
}

.hero-copy {
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 36px;
  height: 8px;
  border-radius: 999px;
  background: var(--gradient-main);
  box-shadow: 0 12px 24px rgba(255, 93, 34, 0.22);
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: #4f535c;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 34px 0 24px;
}

.app-store-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 20px;
  border: 1px solid rgba(255, 61, 46, 0.2);
  border-radius: 18px;
  background: var(--gradient-main);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 20px 46px rgba(255, 93, 34, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-store-button i {
  font-size: 1.65rem;
}

.app-store-button span {
  display: grid;
  line-height: 1.05;
}

.app-store-button small {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.app-store-button strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 61, 46, 0.18);
  border-radius: 18px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  border-color: rgba(255, 61, 46, 0.2);
  background: var(--gradient-main);
  color: #ffffff;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-primary-dark);
  box-shadow: 0 12px 28px rgba(120, 39, 15, 0.08);
}

.button-ghost:hover,
.button:focus-visible {
  border-color: rgba(255, 61, 46, 0.32);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(255, 93, 34, 0.16);
}

.trust-badges,
.pill-cloud,
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badges span,
.pill-cloud span,
.metric-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 61, 46, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #4f535c;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(120, 39, 15, 0.06);
}

.hero-studio {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
}

.phone-mockup,
.mini-phone {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, #fff1eb),
    #ffffff;
  border: 1px solid rgba(255, 61, 46, 0.18);
  box-shadow: var(--shadow-glow);
}

.phone-mockup {
  width: min(418px, 86vw);
  aspect-ratio: 9 / 19.4;
  padding: 14px;
  border-radius: 48px;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 4;
  width: 116px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #17171a;
}

.phone-mockup picture,
.mini-phone picture {
  position: absolute;
  inset: 14px;
  z-index: 2;
  overflow: hidden;
  border-radius: 34px;
}

.mini-phone picture {
  inset: 10px;
  border-radius: 25px;
}

.phone-mockup img,
.mini-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slot.image-missing picture,
.image-slot img[hidden] {
  display: none;
}

.mock-ui {
  position: absolute;
  inset: 14px;
  z-index: 1;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #fffaf8 0%, #ffffff 54%, #fff2ed 100%);
}

.mini-phone .mock-ui {
  inset: 10px;
  border-radius: 25px;
}

.editor-screen {
  display: grid;
  grid-template-rows: 56px minmax(0, 1fr) 74px 210px;
}

.editor-topbar {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 80px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(23, 23, 26, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.editor-topbar span,
.editor-topbar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(23, 23, 26, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-text);
}

.editor-topbar strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 0.92rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.editor-topbar button {
  border-color: rgba(255, 61, 46, 0.22);
  background: var(--gradient-main);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
}

.preview-window {
  display: grid;
  place-items: center;
  padding: 18px;
}

.preview-video {
  position: relative;
  width: 76%;
  aspect-ratio: 9 / 13;
  overflow: hidden;
  border: 1px solid rgba(255, 61, 46, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(255, 61, 46, 0.92), transparent 36%),
    linear-gradient(35deg, rgba(255, 176, 32, 0.86), transparent 45%),
    linear-gradient(220deg, rgba(255, 122, 26, 0.78), #ffffff);
  box-shadow: 0 22px 54px rgba(255, 93, 34, 0.2);
}

.preview-video::before,
.preview-video::after {
  content: "";
  position: absolute;
  inset: 18% auto auto 12%;
  width: 62%;
  height: 18%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.34);
  transform: rotate(-8deg);
}

.preview-video::after {
  inset: auto 10% 18% auto;
  width: 54%;
  transform: rotate(9deg);
}

.caption-chip,
.effect-tag {
  position: absolute;
  left: 16px;
  z-index: 2;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.caption-chip {
  bottom: 18px;
}

.effect-tag {
  top: 18px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 18px 38px rgba(120, 39, 15, 0.16);
}

.tool-dock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0 14px 14px;
}

.tool-dock span {
  display: grid;
  place-items: center;
  gap: 4px;
  min-width: 0;
  padding: 8px 4px;
  border: 1px solid rgba(255, 61, 46, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: #4f535c;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(120, 39, 15, 0.06);
}

.tool-dock i {
  color: var(--color-primary);
}

.timeline-ui {
  position: relative;
  padding: 14px;
  border-top: 1px solid rgba(23, 23, 26, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 61, 46, 0.09) 1px, transparent 1px),
    #fff8f5;
  background-size: 32px 100%;
}

.time-ruler {
  display: flex;
  justify-content: space-between;
  color: rgba(23, 23, 26, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
}

.playhead {
  position: absolute;
  top: 32px;
  bottom: 10px;
  left: 48%;
  width: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 16px rgba(255, 61, 46, 0.42);
}

.track {
  display: flex;
  gap: 6px;
  height: 34px;
  margin-top: 10px;
}

.track span {
  border-radius: 10px;
}

.track-video span:nth-child(1) {
  flex: 1.2;
  background: linear-gradient(135deg, var(--color-primary), #ff8a1f);
}

.track-video span:nth-child(2) {
  flex: 0.8;
  background: linear-gradient(135deg, var(--color-orange-soft), #ff4d2f);
}

.track-video span:nth-child(3) {
  flex: 1;
  background: linear-gradient(135deg, var(--color-orange), #ffd08a);
}

.track-caption span {
  flex: 0 0 66%;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
  background: rgba(255, 61, 46, 0.1);
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.track-audio span:nth-child(1) {
  flex: 0 0 56%;
  background: repeating-linear-gradient(90deg, rgba(255, 122, 26, 0.86) 0 6px, rgba(255, 122, 26, 0.3) 6px 12px);
}

.track-audio span:nth-child(2) {
  flex: 1;
  background: repeating-linear-gradient(90deg, rgba(255, 176, 32, 0.9) 0 6px, rgba(255, 176, 32, 0.32) 6px 12px);
}

.floating-tool,
.export-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 61, 46, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-text);
  font-weight: 900;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(120, 39, 15, 0.14);
  animation: floatTool 5s ease-in-out infinite;
}

.floating-tool i {
  color: var(--color-primary);
}

.tool-one {
  top: 16%;
  left: 0;
}

.tool-two {
  top: 32%;
  right: -2%;
  animation-delay: 800ms;
}

.tool-three {
  bottom: 25%;
  left: 4%;
  animation-delay: 1400ms;
}

.tool-four {
  right: 8%;
  bottom: 9%;
  animation-delay: 2000ms;
}

.export-chip {
  left: 50%;
  bottom: 0;
  display: grid;
  gap: 0;
  min-width: 126px;
  padding: 10px 15px;
  transform: translateX(-50%);
  text-align: center;
  animation-delay: 1100ms;
}

.export-chip strong {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.export-chip span {
  color: var(--color-muted);
  font-size: 0.72rem;
}

.features-section,
.preview-section,
.benefit-section,
.workflow-section,
.templates-section,
.download-section,
.comparison-section,
.editorial-section,
.workflow {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading p:not(.hero-kicker) {
  max-width: 660px;
  font-size: 1.04rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.bento-card,
.feature-card,
.detail-block,
.step-card,
.values-grid article,
.contact-card,
.contact-aside,
.legal-content {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 245, 0.78)),
    var(--color-card);
  box-shadow: var(--shadow-soft);
}

.bento-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bento-card::before,
.download-card::before,
.asset-store-panel::before,
.editor-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 61, 46, 0.12), rgba(255, 122, 26, 0.08), rgba(255, 176, 32, 0.12));
  opacity: 0;
  transition: opacity 180ms ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 61, 46, 0.26);
  box-shadow: 0 28px 80px rgba(255, 93, 34, 0.18), 0 12px 34px rgba(23, 23, 26, 0.08);
}

.bento-card:hover::before,
.download-card:hover::before,
.asset-store-panel:hover::before,
.editor-panel:hover::before {
  opacity: 1;
}

.bento-large {
  grid-column: span 3;
}

.bento-tall {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 536px;
}

.bento-wide {
  grid-column: span 4;
}

.bento-card:not(.bento-large):not(.bento-tall):not(.bento-wide) {
  grid-column: span 2;
}

.card-icon,
.detail-icon,
.feature-card > i,
.values-grid i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 61, 46, 0.18);
  border-radius: 16px;
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 12px 28px rgba(255, 93, 34, 0.12);
}

.card-icon.orange,
.detail-block:nth-child(2) .detail-icon,
.feature-card:nth-child(2) > i,
.values-grid article:nth-child(2) i {
  color: var(--color-orange);
}

.card-icon.red,
.detail-block:nth-child(3) .detail-icon,
.feature-card:nth-child(3) > i,
.values-grid article:nth-child(3) i {
  color: var(--color-primary);
}

.card-icon.gold,
.detail-block:nth-child(4) .detail-icon,
.feature-card:nth-child(4) > i {
  color: var(--color-orange-soft);
}

.bento-card p {
  margin: 0;
}

.mini-controls,
.asset-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-controls span,
.asset-pills span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 61, 46, 0.14);
  border-radius: 999px;
  color: #555964;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.clip-stack {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(255, 61, 46, 0.14);
  border-radius: 22px;
  background: #fff8f5;
}

.clip-stack span {
  height: 34px;
  border-radius: 12px;
}

.clip-stack span:nth-child(1) {
  width: 92%;
  background: linear-gradient(90deg, var(--color-primary), rgba(255, 61, 46, 0.14));
}

.clip-stack span:nth-child(2) {
  width: 68%;
  margin-left: auto;
  background: linear-gradient(90deg, rgba(255, 176, 32, 0.18), var(--color-orange-soft));
}

.clip-stack span:nth-child(3) {
  width: 78%;
  background: linear-gradient(90deg, var(--color-orange), rgba(255, 122, 26, 0.14));
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.shot-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.shot-card h3 {
  padding-inline: 4px;
  font-size: 1.05rem;
}

.mini-phone {
  width: 100%;
  aspect-ratio: 9 / 18.8;
  border-radius: 34px;
}

.mini-screen {
  display: grid;
  gap: 10px;
  align-content: end;
  padding: 14px;
}

.mini-preview,
.split-preview,
.caption-preview,
.export-meter {
  min-height: 58%;
  border: 1px solid rgba(255, 61, 46, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(140deg, rgba(255, 61, 46, 0.86), transparent 34%),
    linear-gradient(35deg, rgba(255, 176, 32, 0.82), transparent 44%),
    #ffffff;
}

.mini-track {
  height: 24px;
  border-radius: 10px;
}

.mini-track.one {
  background: linear-gradient(90deg, var(--color-primary), rgba(255, 61, 46, 0.12));
}

.mini-track.two {
  width: 74%;
  background: linear-gradient(90deg, var(--color-orange), rgba(255, 122, 26, 0.12));
}

.mini-track.three {
  width: 58%;
  margin-left: auto;
  background: linear-gradient(90deg, rgba(255, 176, 32, 0.12), var(--color-orange-soft));
}

.split-preview {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 8px;
  background: #fff8f5;
}

.split-preview span {
  border-radius: 14px;
}

.split-preview span:first-child {
  background: linear-gradient(135deg, var(--color-primary), #ff9c43);
}

.split-preview span:last-child {
  background: linear-gradient(135deg, var(--color-orange-soft), #ff5a2c);
}

.transition-node {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 15px 30px rgba(120, 39, 15, 0.14);
}

.caption-preview {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 14px;
  text-align: center;
}

.caption-preview span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.caption-lines,
.store-bar,
.setting-row {
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.16);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  min-height: 70%;
}

.store-grid span {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 61, 46, 0.78), rgba(255, 176, 32, 0.22));
}

.store-grid span:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.84), rgba(255, 61, 46, 0.2));
}

.store-grid span:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 176, 32, 0.88), rgba(255, 122, 26, 0.16));
}

.store-grid span:nth-child(4) {
  background: linear-gradient(135deg, rgba(255, 77, 47, 0.78), rgba(255, 176, 32, 0.18));
}

.export-meter {
  min-height: 55%;
  display: grid;
  place-items: center;
}

.export-meter span {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
}

.export-button {
  display: grid;
  place-items: center;
  min-height: 36px;
  border-radius: 999px;
  background: var(--gradient-main);
  color: #ffffff;
  font-weight: 900;
}

.benefit-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.editor-panel,
.asset-store-panel,
.download-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 245, 0.84)),
    var(--color-surface);
  box-shadow: var(--shadow-glow);
}

.editor-panel {
  padding: 18px;
}

.panel-header,
.store-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--color-muted);
  font-weight: 900;
}

.panel-header strong,
.store-header button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 61, 46, 0.18);
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.1);
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.store-header button {
  cursor: pointer;
}

.wide-preview {
  min-height: 300px;
  display: grid;
  align-items: end;
  padding: 22px;
  border: 1px solid rgba(255, 61, 46, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 61, 46, 0.84), transparent 38%),
    linear-gradient(35deg, rgba(255, 176, 32, 0.82), transparent 44%),
    linear-gradient(220deg, rgba(255, 122, 26, 0.62), #ffffff);
}

.story-tag {
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-primary-dark);
  font-weight: 900;
}

.wide-timeline {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 61, 46, 0.1) 1px, transparent 1px),
    #fff8f5;
  background-size: 44px 100%;
}

.clip,
.caption,
.audio {
  height: 30px;
  border-radius: 10px;
}

.clip.red {
  width: 88%;
  background: linear-gradient(90deg, var(--color-primary), rgba(255, 61, 46, 0.12));
}

.clip.gold {
  width: 68%;
  margin-left: auto;
  background: linear-gradient(90deg, rgba(255, 176, 32, 0.14), var(--color-orange-soft));
}

.clip.orange {
  width: 74%;
  background: linear-gradient(90deg, var(--color-orange), rgba(255, 122, 26, 0.12));
}

.caption {
  width: 55%;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
  background: rgba(255, 61, 46, 0.1);
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.audio {
  width: 82%;
  background: repeating-linear-gradient(90deg, rgba(255, 122, 26, 0.82) 0 8px, rgba(255, 122, 26, 0.28) 8px 16px);
}

.benefit-copy {
  min-width: 0;
}

.benefit-copy h2 {
  margin-bottom: 24px;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 61, 46, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(120, 39, 15, 0.06);
}

.benefit-list i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 122, 26, 0.1);
  color: var(--color-primary);
}

.benefit-list span {
  color: #373a42;
  font-weight: 800;
}

.timeline-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline-process::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 7%;
  right: 7%;
  height: 3px;
  background: var(--gradient-main);
  box-shadow: 0 16px 30px rgba(255, 93, 34, 0.18);
}

.process-step {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 61, 46, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 245, 0.8)),
    var(--color-card);
  box-shadow: var(--shadow-soft);
}

.process-step span,
.step-card span,
.principle-list span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 61, 46, 0.18);
  border-radius: 18px;
  background: var(--gradient-main);
  color: #ffffff;
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
}

.templates-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 44px;
  align-items: center;
}

.asset-copy p:not(.hero-kicker) {
  max-width: 560px;
}

.asset-store-panel {
  padding: 22px;
}

.store-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.store-tabs span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 61, 46, 0.13);
  border-radius: 999px;
  color: #555964;
  background: #ffffff;
  font-weight: 800;
  font-size: 0.86rem;
}

.store-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 105px;
  gap: 12px;
}

.tile {
  border: 1px solid rgba(255, 61, 46, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 61, 46, 0.78), rgba(255, 176, 32, 0.22)),
    #fff8f5;
}

.tile.tall {
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(255, 61, 46, 0.84), rgba(255, 122, 26, 0.18));
}

.tile.wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.74), rgba(255, 176, 32, 0.2));
}

.tile.warm {
  background: linear-gradient(135deg, rgba(255, 176, 32, 0.84), rgba(255, 61, 46, 0.18));
}

.tile.red {
  background: linear-gradient(135deg, rgba(255, 90, 34, 0.78), rgba(255, 245, 240, 0.6));
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 32px;
  align-items: center;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 61, 46, 0.12), rgba(255, 122, 26, 0.1), rgba(255, 176, 32, 0.12)),
    #ffffff;
}

.download-card p:not(.hero-kicker) {
  max-width: 620px;
  font-size: 1.04rem;
}

.app-icon-large {
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 61, 46, 0.18);
  border-radius: 42px;
  background: var(--gradient-main);
  color: #ffffff;
  box-shadow: 0 24px 56px rgba(255, 93, 34, 0.26);
  font-size: 4rem;
}

.app-icon-large span {
  font-family: var(--font-display);
  font-weight: 700;
}

.page-hero,
.contact-hero,
.split-section,
.asset-section,
.story-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 84px 0;
}

.page-hero h1,
.contact-hero h1,
.legal-content h1 {
  font-size: 4rem;
}

.page-hero-copy p,
.split-copy p,
.story-copy p {
  max-width: 680px;
  font-size: 1.04rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 8px;
  border-radius: 999px;
  background: var(--gradient-main);
}

.feature-grid,
.detail-grid,
.values-grid,
.step-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.detail-grid {
  padding-bottom: 74px;
}

.feature-card,
.detail-block,
.step-card,
.values-grid article,
.contact-card,
.contact-aside {
  padding: 24px;
}

.feature-card p,
.detail-block p,
.step-card p,
.values-grid p {
  margin-bottom: 0;
}

.studio-shot,
.page-shot {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 61, 46, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 61, 46, 0.22), transparent 38%),
    linear-gradient(35deg, rgba(255, 176, 32, 0.2), rgba(255, 122, 26, 0.12)),
    #ffffff;
  box-shadow: var(--shadow-glow);
}

.studio-shot img,
.page-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  color: var(--color-muted);
}

.check-list i {
  color: var(--color-primary);
  margin-top: 5px;
}

.feature-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.feature-table div {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
}

.feature-table div + div {
  border-top: 1px solid var(--color-border);
}

.feature-table span {
  padding: 18px;
  color: var(--color-muted);
}

.feature-table span:first-child {
  color: var(--color-text);
  font-weight: 900;
  background: #fff8f5;
  border-right: 1px solid var(--color-border);
}

.about-emblem {
  position: relative;
  width: min(410px, 76vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 61, 46, 0.18);
  border-radius: 50%;
  background: conic-gradient(from 40deg, #ff3d2e, #ff7a1a, #ffb020, #ff5a2c, #ff3d2e);
  box-shadow: var(--shadow-glow);
}

.about-emblem i {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  padding-left: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-primary);
  font-size: 3rem;
}

.about-emblem span {
  position: absolute;
  bottom: 54px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 61, 46, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-list {
  display: grid;
  gap: 12px;
}

.principle-list div {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 61, 46, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.principle-list span {
  margin-bottom: 0;
}

.principle-list p {
  margin: 0;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(255, 61, 46, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  color: var(--color-text);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #ffffff;
  color: var(--color-text);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(255, 122, 26, 0.2);
  border-color: rgba(255, 61, 46, 0.34);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--color-primary-dark);
  font-weight: 900;
}

.legal-page {
  padding: 82px 0;
}

.legal-content {
  width: min(860px, 100%);
  margin-inline: auto;
  padding: 36px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.legal-date {
  color: var(--color-text);
  font-weight: 900;
}

.redirect-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(260px, 1fr);
  gap: 28px;
  padding: 44px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 61, 46, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 61, 46, 0.1), rgba(255, 122, 26, 0.08), rgba(255, 176, 32, 0.1)),
    #ffffff;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand p,
.footer-disclaimer,
.copyright {
  max-width: 720px;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.footer-columns {
  display: grid;
  justify-items: end;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a:hover,
.footer-links a.is-active {
  color: var(--color-primary-dark);
}

.legal-links a {
  color: #4f535c;
}

.footer-disclaimer,
.copyright {
  grid-column: 1 / -1;
}

.footer-store {
  width: max-content;
}

.ticker {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid rgba(255, 61, 46, 0.12);
  background: rgba(255, 122, 26, 0.08);
}

.ticker span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 61, 46, 0.14);
  border-radius: 999px;
  color: var(--color-text);
  background: #ffffff;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatTool {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .site-header {
    padding-inline: 20px;
  }

  .header-cta {
    display: none;
  }

  .home-hero,
  .benefit-section,
  .templates-section,
  .page-hero,
  .contact-hero,
  .split-section,
  .asset-section,
  .story-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-studio {
    min-height: 630px;
  }

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

  .bento-large,
  .bento-tall,
  .bento-wide,
  .bento-card:not(.bento-large):not(.bento-tall):not(.bento-wide) {
    grid-column: span 1;
  }

  .bento-tall {
    min-height: 330px;
  }

  .screen-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-process::before {
    display: none;
  }

  .feature-grid,
  .detail-grid,
  .step-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .app-icon-large {
    justify-self: start;
  }
}

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

  body::before {
    background-size: 34px 34px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header) + 10px) 14px auto 14px;
    display: none;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(255, 61, 46, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 80px rgba(120, 39, 15, 0.18);
    backdrop-filter: blur(22px);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    border-color: rgba(255, 61, 46, 0.12);
  }

  .home-hero {
    gap: 34px;
    padding: 42px 0 72px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .app-store-button,
  .button {
    width: 100%;
  }

  .hero-studio {
    min-height: 520px;
  }

  .phone-mockup {
    width: min(330px, 86vw);
    border-radius: 42px;
  }

  .floating-tool {
    min-height: 42px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .tool-one {
    left: -2px;
  }

  .tool-two {
    right: -4px;
  }

  .tool-three {
    left: 8px;
    bottom: 21%;
  }

  .tool-four {
    right: 8px;
    bottom: 8%;
  }

  .export-chip {
    display: none;
  }

  .features-section,
  .preview-section,
  .benefit-section,
  .workflow-section,
  .templates-section,
  .download-section,
  .comparison-section,
  .editorial-section,
  .workflow {
    padding: 64px 0;
  }

  .bento-grid,
  .feature-grid,
  .detail-grid,
  .values-grid,
  .step-row,
  .timeline-process {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .feature-card,
  .detail-block,
  .step-card,
  .values-grid article {
    min-height: auto;
    border-radius: 24px;
  }

  .screen-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 72vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .shot-card {
    scroll-snap-align: start;
  }

  .wide-preview {
    min-height: 230px;
  }

  .store-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 90px;
  }

  .tile.wide {
    grid-column: span 2;
  }

  .download-card {
    padding: 26px;
    border-radius: 26px;
  }

  .app-icon-large {
    width: 128px;
    border-radius: 30px;
    font-size: 2.6rem;
  }

  .page-hero,
  .contact-hero,
  .split-section,
  .asset-section,
  .story-section,
  .contact-layout {
    padding: 58px 0;
  }

  .page-hero h1,
  .contact-hero h1,
  .legal-content h1 {
    font-size: 2.75rem;
  }

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

  .feature-table span:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .principle-list div,
  .benefit-list article {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 14px;
  }

  .footer-columns {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
