:root {
  --bg: #fff8ec;
  --bg-soft: #fff0df;
  --panel: #ffffff;
  --panel-2: #fffaf4;
  --text: #23201d;
  --muted: #706861;
  --coral: #ff6a4a;
  --coral-2: #ff8b62;
  --orange: #ffb06b;
  --peach: #ffe0c8;
  --line: rgba(35, 32, 29, 0.1);
  --line-coral: rgba(255, 106, 74, 0.24);
  --shadow: 0 24px 70px rgba(117, 65, 35, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(140deg, rgba(255, 176, 107, 0.22), transparent 34%),
    linear-gradient(225deg, rgba(255, 106, 74, 0.11), transparent 38%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  min-height: 74px;
  margin: 0 auto;
  padding: 14px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 10px -14px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.86);
  box-shadow: 0 16px 45px rgba(117, 65, 35, 0.08);
  backdrop-filter: blur(18px);
  z-index: -1;
}

.legal-header::before {
  background: rgba(255, 250, 244, 0.95);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: #ffffff;
  font-size: 1rem;
  box-shadow: 0 14px 28px rgba(255, 106, 74, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 106, 74, 0.09);
}

.site-nav .nav-cta {
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 14px 28px rgba(255, 106, 74, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #ffffff;
  background: #e95738;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: 82svh;
  margin-top: -74px;
  padding: 148px 16px 60px;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.99) 0%, rgba(255, 248, 236, 0.92) 38%, rgba(255, 248, 236, 0.2) 69%, rgba(255, 248, 236, 0.4) 100%),
    linear-gradient(180deg, rgba(255, 248, 236, 0) 0%, rgba(255, 248, 236, 0.98) 100%),
    url("assets/inizio-startup-launch-mobile-products.png");
  background-position: center;
  background-size: cover;
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--text);
  font-family: "Nunito Sans", "Inter", Arial, sans-serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.55rem);
}

h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.55rem);
}

h3 {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
}

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--coral), var(--coral-2));
  box-shadow: 0 18px 34px rgba(255, 106, 74, 0.24);
}

.secondary-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line-coral);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(255, 106, 74, 0.3);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: var(--coral);
  background: #ffffff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 790px;
}

.hero-metrics div {
  min-height: 114px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(117, 65, 35, 0.08);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 0.88rem;
}

.hero-metrics span {
  display: block;
  color: var(--text);
  font-weight: 900;
  line-height: 1.35;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
  padding-top: 70px;
}

.intro-copy {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.12rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.proof-card,
.launch-panel,
.launch-list div,
.timeline-item,
.legal-content article {
  border: 1px solid rgba(35, 32, 29, 0.08);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 264px;
  padding: 26px;
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 8px;
  color: var(--coral);
  background: rgba(255, 224, 200, 0.72);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-card p,
.proof-card p,
.launch-list span,
.timeline-item p,
.legal-content p {
  color: var(--muted);
}

.launch-section {
  position: relative;
}

.launch-section::before {
  content: "";
  position: absolute;
  inset: 38px -4vw;
  border-top: 1px solid var(--line-coral);
  border-bottom: 1px solid var(--line-coral);
  background: linear-gradient(135deg, rgba(255, 240, 223, 0.86), rgba(255, 255, 255, 0.82), rgba(255, 224, 200, 0.72));
  z-index: -1;
}

.launch-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 224, 200, 0.62), rgba(255, 255, 255, 0.96) 48%, rgba(255, 240, 223, 0.86)),
    #ffffff;
}

.launch-list {
  display: grid;
  gap: 14px;
}

.launch-list div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.launch-list strong {
  color: var(--text);
  font-size: 1.04rem;
}

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

.proof-card {
  min-height: 236px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 224, 200, 0.4), rgba(255, 255, 255, 0.98)),
    var(--panel);
}

.proof-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process {
  padding-top: 44px;
}

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

.timeline-item {
  min-height: 248px;
  padding: 28px;
  background: var(--panel-2);
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.12rem;
}

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

.contact-inner {
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid var(--line-coral);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 224, 200, 0.9), rgba(255, 255, 255, 0.94) 52%, rgba(255, 240, 223, 0.86)),
    #ffffff;
  box-shadow: var(--shadow);
}

.contact-inner h2 {
  max-width: 790px;
  margin-bottom: 18px;
}

.contact-inner p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 430px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
  max-width: 560px;
}

.footer-links a {
  color: var(--text);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: var(--coral);
}

.legal-main {
  width: min(calc(100% - 32px), 920px);
  margin: 0 auto;
  padding: 74px 0 82px;
}

.legal-hero {
  padding: 72px 0 38px;
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.legal-hero p:last-child {
  color: var(--muted);
  font-weight: 700;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-content article {
  padding: 28px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
}

.legal-content a {
  color: var(--coral);
  font-weight: 800;
}

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

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

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

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

@media (max-width: 980px) {
  h1 {
    max-width: 690px;
  }

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

  .intro,
  .launch-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(calc(100% - 24px), var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, calc(100vw - 24px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 136px;
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.99) 0%, rgba(255, 248, 236, 0.93) 54%, rgba(255, 248, 236, 0.55) 100%),
      url("assets/inizio-startup-launch-mobile-products.png");
    background-position: center top;
    background-size: cover;
  }

  .hero-metrics,
  .card-grid.four,
  .proof,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .service-card,
  .proof-card,
  .timeline-item {
    min-height: auto;
  }

  .timeline-item span {
    margin-bottom: 24px;
  }

  .site-footer {
    flex-direction: column;
  }

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

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .brand {
    gap: 8px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 2.62rem;
  }
}
