:root {
  --bg: #f6efe5;
  --bg-strong: #f0e4d4;
  --surface: rgba(255, 251, 245, 0.72);
  --surface-strong: rgba(255, 251, 245, 0.92);
  --text: #221b16;
  --muted: #66594f;
  --border: rgba(34, 27, 22, 0.08);
  --shadow: 0 30px 80px rgba(52, 34, 14, 0.12);
  --fox: #ef7f2f;
  --customs: #0f766e;
  --drive: #1660ff;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(239, 127, 47, 0.14), transparent 24rem),
    radial-gradient(circle at top right, rgba(22, 96, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 46%, #efe4d5 100%);
  color: var(--text);
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 56px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 243, 0.8);
  box-shadow: 0 12px 32px rgba(63, 39, 9, 0.08);
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f08e4a, #d85f17);
  color: #fff8f1;
  font-weight: 700;
  text-transform: lowercase;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--text);
}

.hero-section,
.apps-section,
.about-section,
.trust-section,
.site-footer {
  margin-top: 28px;
}

.hero-section {
  min-height: calc(100svh - 122px);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 8px;
}

.hero-copy,
.hero-stage,
.app-card,
.about-panel,
.trust-section,
.site-footer {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.96;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.7rem;
}

.hero-text,
.section-heading p + h2 + p,
.app-card p,
.about-panel p,
.trust-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 60ch;
  margin: 20px 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--text);
  color: #fff8f1;
}

.button-secondary {
  background: rgba(34, 27, 22, 0.06);
  color: var(--text);
}

.hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  margin-right: 10px;
  color: var(--text);
}

.hero-stage {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(240, 142, 74, 0.24), transparent 12rem),
    radial-gradient(circle at bottom right, rgba(22, 96, 255, 0.16), transparent 16rem),
    linear-gradient(160deg, rgba(255, 252, 247, 0.96), rgba(247, 239, 228, 0.88));
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px dashed rgba(34, 27, 22, 0.1);
}

.floating-app {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  padding: 18px;
  border: 1px solid rgba(34, 27, 22, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 18px 42px rgba(37, 21, 4, 0.12);
  animation: float 6s ease-in-out infinite;
}

.floating-app img {
  width: 62px;
  height: 62px;
  border-radius: 18px;
}

.floating-app strong {
  display: block;
  font-size: 1rem;
}

.floating-app span {
  color: var(--muted);
  font-size: 0.9rem;
}

.app-fox {
  top: 10%;
  left: 8%;
}

.app-customs {
  top: 38%;
  right: 9%;
  animation-delay: 800ms;
}

.app-drive {
  bottom: 10%;
  left: 16%;
  animation-delay: 1400ms;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.section-heading h2 + p {
  max-width: 56ch;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.app-card {
  padding: 24px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.app-card:hover {
  transform: translateY(-4px);
}

.app-card-fox:hover {
  border-color: rgba(239, 127, 47, 0.32);
}

.app-card-customs:hover {
  border-color: rgba(15, 118, 110, 0.32);
}

.app-card-drive:hover {
  border-color: rgba(22, 96, 255, 0.32);
}

.app-card-head {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
}

.app-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
}

.app-card p {
  margin: 10px 0 0;
}

.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.42;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.store-links a {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(34, 27, 22, 0.06);
  font-weight: 600;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-panel {
  padding: 22px;
}

.about-panel h3 {
  font-size: 1.4rem;
}

.about-panel p {
  margin: 14px 0 0;
}

.trust-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(22, 96, 255, 0.08), transparent 16rem),
    linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(247, 239, 229, 0.94));
}

.trust-list {
  margin: 0;
  display: grid;
  gap: 14px;
}

.trust-list div {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
}

.trust-list dt {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-list dd {
  margin: 8px 0 0;
  font-weight: 600;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  padding: 22px 24px;
}

.footer-title {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

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

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

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

@media (max-width: 1100px) {
  .hero-section,
  .trust-section,
  .app-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

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

  .floating-app {
    min-width: 0;
    width: calc(100% - 48px);
  }

  .app-fox {
    top: 9%;
    left: 24px;
  }

  .app-customs {
    top: 39%;
    right: 24px;
  }

  .app-drive {
    bottom: 9%;
    left: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
