@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;1,400;1,500&display=swap");

:root {
  --ink: #171712;
  --red: #a73224;
  --cream: #f4f0e6;
  --gold: #b99a62;
  --line: rgba(23, 23, 18, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Be Vietnam Pro", Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}
.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(74, 21, 16, 0.2);
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.16em;
}
.brand strong {
  font-family: "Lora", Georgia, serif;
  font-size: 17px;
}
.brand small {
  font-size: 8px;
  color: var(--red);
  letter-spacing: 0.43em;
  margin-top: 6px;
}
.nav-links {
  display: flex;
  gap: 38px;
  font-size: 13px;
  font-weight: 700;
}
.nav-links a {
  position: relative;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--red);
  transition: 0.25s;
}
.nav-links a:hover:after {
  right: 0;
}
.nav-cta {
  border: 1px solid var(--ink);
  padding: 13px 17px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.2s;
}
.nav-cta:hover {
  color: white;
  background: var(--red);
  border-color: var(--red);
}
.nav-cta span {
  margin-left: 14px;
}
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 70px;
  overflow: hidden;
}
.eyebrow,
.section-kicker {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.eyebrow span {
  font-size: 8px;
  margin-right: 8px;
}
h1,
h2 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 400;
  margin: 0;
  line-height: 0.97;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(56px, 6vw, 87px);
  margin-top: 24px;
}
h1 em,
h2 em {
  color: var(--red);
  font-weight: 400;
}
h1 span {
  font-style: italic;
}
.hero-copy > p {
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  max-width: 530px;
  margin: 30px 0;
  color: #5c584f;
}
.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-button {
  min-width: 177px;
  height: 57px;
  color: white;
  background: #171712;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid #171712;
  transition: 0.25s;
}
.store-button:hover {
  transform: translateY(-3px);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 12px 30px rgba(91, 29, 21, 0.18);
}
.store-button > span:last-child {
  display: flex;
  flex-direction: column;
}
.store-button small {
  font-size: 8px;
  letter-spacing: 0.08em;
}
.store-button strong {
  font-size: 17px;
  line-height: 1.2;
}
.play-mark {
  color: #93c47d;
  font-size: 23px;
  text-shadow: 8px 0 #f3c85b;
}
.apple-mark {
  width: 25px;
  height: 25px;
  background: white;
  color: white;
  border-radius: 48% 48% 52% 52%;
  position: relative;
}
.apple-mark:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 5px;
  background: white;
  border-radius: 100% 0;
  top: -5px;
  right: 3px;
  transform: rotate(-35deg);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 27px;
  font-size: 10px;
  color: #797368;
  letter-spacing: 0.04em;
}
.hero-meta span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-meta b {
  color: var(--ink);
  font-size: 11px;
}
.hero-meta i {
  width: 1px;
  height: 28px;
  background: var(--line);
}
.hero-visual {
  height: 620px;
  position: relative;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(167, 50, 36, 0.2);
  border-radius: 50%;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
}
.orbit-one {
  width: 540px;
  height: 540px;
}
.orbit-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
}
.hexagram {
  position: absolute;
  right: 5%;
  top: 2%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.15;
}
.hexagram i {
  width: 70px;
  height: 7px;
  background: var(--red);
}
.phone {
  position: absolute;
  overflow: hidden;
  background: #111;
  border: 9px solid #1b1b19;
  border-radius: 42px;
  box-shadow: 0 42px 65px rgba(53, 35, 26, 0.22);
}
.phone img {
  object-fit: cover;
}
.phone-front {
  width: 286px;
  height: 575px;
  left: 47%;
  top: 1%;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 3;
}
.phone-back {
  width: 250px;
  height: 500px;
  left: 68%;
  top: 9%;
  transform: rotate(10deg);
  opacity: 0.88;
}
.phone:after {
  content: "";
  width: 37%;
  height: 20px;
  background: #1b1b19;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0;
  left: 31.5%;
}
.floating-note {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 14px 17px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 15px 40px rgba(54, 31, 20, 0.12);
  font-size: 11px;
  line-height: 1.35;
}
.floating-note b {
  font-family: "Lora", Georgia, serif;
  font-size: 27px;
  color: var(--red);
}
.floating-note small {
  color: #777;
}
.note-one {
  left: 2%;
  top: 25%;
}
.note-two {
  right: 0;
  bottom: 14%;
}
.intro {
  background: #e8e0d1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 92px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.72fr 2fr 0.55fr;
  gap: 50px;
  align-items: start;
}
h2 {
  font-size: clamp(44px, 5vw, 70px);
}
.intro-grid p,
.section-head > p,
.showcase-head > p {
  font-family: "Lora", Georgia, serif;
  color: #625d54;
  line-height: 1.75;
  max-width: 620px;
  font-size: 17px;
  margin: 30px 0 0;
}
.seal {
  width: 108px;
  height: 108px;
  border: 2px solid var(--red);
  color: var(--red);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  text-align: center;
  transform: rotate(4deg);
  margin-top: 12px;
  padding: 12px;
  position: relative;
}
.seal:after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--red);
}
.seal span {
  font-family: "Lora", Georgia, serif;
  font-size: 31px;
  writing-mode: vertical-lr;
  position: relative;
  z-index: 1;
}
.features {
  padding: 115px 0;
}
.section-head,
.showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
}
.section-head h2,
.showcase-head h2 {
  margin-top: 18px;
}
.section-head > p,
.showcase-head > p {
  max-width: 390px;
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  font-size: 14px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature-card {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: 0.3s;
}
.feature-card:hover {
  background: #ebe2d2;
  transform: translateY(-4px);
}
.feature-number {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #8d877d;
}
.feature-icon {
  margin: 32px 0 24px;
  font-family: "Lora", Georgia, serif;
  font-size: 40px;
  color: var(--red);
}
.feature-card h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  margin: 0 0 14px;
}
.feature-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #6c675f;
  max-width: 290px;
}
.feature-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  opacity: 0.4;
}
.showcase {
  color: white;
  background: #191a17;
  padding: 110px 0 125px;
  overflow: hidden;
}
.showcase h2 em {
  color: #c6a76d;
}
.section-kicker.light {
  color: #c6a76d;
}
.showcase-head > p {
  color: #a8a59e;
}
.screen-rail {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: max-content;
  margin: 80px 0 0 50%;
  transform: translateX(-50%);
}
.screen-card {
  width: 245px;
  height: 490px;
  margin: 0;
  position: relative;
  flex: none;
  overflow: hidden;
  border-radius: 29px;
  border: 7px solid #353632;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}
.screen-card img {
  object-fit: cover;
}
.screen-card-1,
.screen-card-5 {
  transform: translateY(30px) rotate(-3deg);
}
.screen-card-3 {
  transform: translateY(-15px);
}
.screen-card-4,
.screen-card-6 {
  transform: translateY(30px) rotate(3deg);
}
.download {
  margin-top: 115px;
  margin-bottom: 115px;
  min-height: 480px;
  padding: 75px 80px;
  color: white;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.download-copy {
  max-width: 650px;
  position: relative;
  z-index: 2;
}
.download h2 {
  margin: 20px 0 22px;
  font-size: clamp(49px, 6vw, 76px);
}
.download h2 em {
  color: #e9c98f;
}
.download p {
  max-width: 530px;
  color: #ead5cf;
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 30px;
}
.download .section-kicker {
  color: #efd39e;
}
.store-buttons-dark .store-button {
  background: #f4f0e6;
  color: #171712;
  border-color: #f4f0e6;
}
.store-buttons-dark .store-button:hover {
  background: #191a17;
  color: white;
  border-color: #191a17;
}
.store-buttons-dark .apple-mark {
  background: #171712;
  color: #171712;
}
.store-buttons-dark .apple-mark:after {
  background: #171712;
}
.download-symbol {
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  flex: none;
}
.download-symbol:after,
.download-symbol:before {
  content: "";
  position: absolute;
  inset: 31px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}
.download-symbol:before {
  inset: -30px;
}
.download-symbol span {
  font-size: 110px;
  font-family: "Lora", Georgia, serif;
}
.download-symbol i {
  position: absolute;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.22em;
  bottom: 36px;
}
.footer {
  min-height: 160px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr auto;
  align-items: center;
  gap: 35px;
  font-size: 11px;
  color: #716d65;
}
.footer > div:nth-child(3) {
  display: flex;
  gap: 20px;
  color: var(--ink);
  font-weight: 700;
}
.footer > small {
  font-size: 9px;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
    text-align: center;
  }
  .hero-copy > p {
    margin-inline: auto;
  }
  .store-buttons,
  .hero-meta {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 40px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .seal {
    margin-inline: auto;
  }
  .section-head,
  .showcase-head {
    align-items: start;
    flex-direction: column;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .download-symbol {
    opacity: 0.16;
    position: absolute;
    right: -70px;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
    padding: 35px 0;
  }
}
@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1240px);
  }
  .nav {
    height: 74px;
  }
  .nav-cta {
    padding: 11px;
    font-size: 10px;
  }
  .nav-cta span {
    display: none;
  }
  .brand span {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 62px;
  }
  h1 {
    font-size: 51px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .store-button {
    width: 100%;
    justify-content: center;
  }
  .hero-meta {
    gap: 12px;
  }
  .hero-visual {
    height: 535px;
  }
  .orbit-one {
    width: 470px;
    height: 470px;
  }
  .phone-front {
    width: 244px;
    height: 490px;
    left: 43%;
  }
  .phone-back {
    width: 210px;
    height: 420px;
    left: 57%;
  }
  .floating-note {
    padding: 10px;
  }
  .note-one {
    left: 0;
    top: 28%;
  }
  .note-two {
    right: 0;
    bottom: 8%;
  }
  .intro,
  .features,
  .showcase {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .screen-rail {
    justify-content: flex-start;
    width: 100%;
    transform: none;
    margin-left: 0;
    padding: 10px 24px 35px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .screen-card {
    width: 235px;
    height: 470px;
    scroll-snap-align: center;
    transform: none;
  }
  .download {
    width: 100%;
    margin: 0;
    padding: 75px 28px;
  }
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer-brand span {
    display: flex;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
