:root {
  --accent: #344752;
  --accent-soft: rgba(52, 71, 82, 0.1);
  --accent-line: rgba(52, 71, 82, 0.42);
  --text: #141414;
  --muted: #707070;
  --bg: #f7f6f2;
  --card: rgba(255, 255, 255, 0.86);
  --border: rgba(20, 20, 20, 0.08);
  --shadow: 0 22px 60px rgba(20, 20, 20, 0.09);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255,255,255,.95), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.phone {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,246,242,0.98)),
    var(--bg);
  overflow: hidden;
  position: relative;
  box-shadow: none;
}

.phone > section,
.phone > footer {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero .logo-mark,
.brand,
.subtitle,
.hero-photo-wrap,
.content .line,
.claim,
.link-card,
.footer .logo-mark,
.footer-brand,
.location {
  opacity: 0;
  translate: 0 16px;
  animation: fadeInUp .72s cubic-bezier(.2, .8, .2, 1) both;
}

.hero .logo-mark { animation-delay: .08s; }
.brand { animation-delay: .16s; }
.subtitle { animation-delay: .26s; }
.hero-photo-wrap { animation-delay: .42s; }
.content .line:first-of-type { animation-delay: .58s; }
.claim { animation-delay: .7s; }
.content .line:last-of-type { animation-delay: .82s; }
.link-card:nth-child(1) { animation-delay: .98s; }
.link-card:nth-child(2) { animation-delay: 1.1s; }
.link-card:nth-child(3) { animation-delay: 1.22s; }
.link-card:nth-child(4) { animation-delay: 1.34s; }
.footer .logo-mark { animation-delay: 1.5s; }
.footer-brand { animation-delay: 1.62s; }
.location { animation-delay: 1.74s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    translate: 0 16px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

.hero {
  padding: 34px 22px 0;
  text-align: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 72%, rgba(255,255,255,0) 100%);
  position: relative;
}

.logo-mark {
  width: 104px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(52,71,82,.16));
}

.brand {
  font-size: 27px;
  line-height: 1;
  letter-spacing: 8px;
  font-weight: 500;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 9.5px;
  line-height: 1.4;
  letter-spacing: 3.2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #303030;
  margin-bottom: 30px;
}

.hero-photo-wrap {
  width: calc(100% + 44px);
  margin-left: -22px;
  height: 315px;
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 72%, rgba(255,255,255,0.32) 100%),
    linear-gradient(90deg, rgba(0,0,0,.05), transparent 24%, transparent 76%, rgba(0,0,0,.05));
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.015);
  filter: saturate(.9) contrast(1.04);
}

.content {
  padding: 40px 24px 28px;
  text-align: center;
  position: relative;
}

.line {
  width: 68px;
  height: 1px;
  background: var(--accent-line);
  margin: 0 auto;
}

.claim {
  margin: 25px 0;
  font-size: 13px;
  letter-spacing: 5px;
  line-height: 2.05;
  font-weight: 500;
  text-transform: uppercase;
}

.links {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card {
  min-height: 93px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.76));
  border: 1px solid var(--border);
  border-radius: 19px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.link-card:active {
  transform: scale(.985);
  box-shadow: 0 12px 32px rgba(20,20,20,.08);
  border-color: rgba(52,71,82,.28);
}

.icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  margin-right: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.95), rgba(52,71,82,.08));
  box-shadow: inset 0 0 0 1px rgba(52,71,82,.08);
}

.icon svg {
  width: 29px;
  height: 29px;
  display: block;
}

.link-copy {
  flex: 1;
  text-align: left;
}

.link-title {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -.2px;
  margin-bottom: 5px;
}

.link-desc {
  font-size: 14px;
  line-height: 1.2;
  color: var(--muted);
  font-weight: 400;
}

.arrow {
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-left: 12px;
  opacity: .95;
}

.footer {
  padding: 6px 24px 42px;
  text-align: center;
}

.footer .logo-mark {
  width: 56px;
  height: auto;
  margin-bottom: 0;
  opacity: .95;
}

.footer-brand {
  font-size: 19px;
  letter-spacing: 6px;
  font-weight: 500;
  margin-bottom: 10px;
}

.location {
  font-size: 10.5px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .hero .logo-mark,
  .brand,
  .subtitle,
  .hero-photo-wrap,
  .content .line,
  .claim,
  .link-card,
  .footer .logo-mark,
  .footer-brand,
  .location {
    opacity: 1;
    translate: none;
    animation: none;
  }
}

@media (min-width: 700px) {
  .phone {
    padding: 56px 28px;
  }

  .phone > section,
  .phone > footer {
    max-width: 620px;
  }

  .hero {
    padding: 46px 36px 0;
    border-radius: 28px 28px 0 0;
  }

  .logo-mark {
    transform: scale(1.08);
  }

  .brand {
    font-size: 36px;
    letter-spacing: 11px;
  }

  .subtitle {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .hero-photo-wrap {
    width: calc(100% + 72px);
    margin-left: -36px;
    height: 420px;
  }

  .content {
    padding: 52px 36px 34px;
  }

  .claim {
    font-size: 15px;
    letter-spacing: 6px;
  }

  .link-card {
    min-height: 104px;
    padding: 22px 24px;
    border-radius: 22px;
  }

  .icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .icon svg {
    width: 33px;
    height: 33px;
  }

  .link-title {
    font-size: 19px;
  }

  .link-desc {
    font-size: 15px;
  }

  .footer {
    padding-bottom: 56px;
  }
}
