@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");
:root {
  --paper: #f6f4ed;
  --ink: #142d2e;
  --orange: #ee6b45;
  --line: #d6d9cb;
  --mint: #deebd7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px "DM Sans",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
header,
footer {
  padding: 28px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 29px;
  letter-spacing: -1.4px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand-icon {
  display: inline-flex;
  background: var(--ink);
  color: var(--paper);
  width: 30px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  transform: rotate(-9deg);
}
.beta {
  font:
    9px "DM Sans",
    sans-serif;
  letter-spacing: 1px;
  border: 1px solid var(--line);
  padding: 7px;
  border-radius: 20px;
  margin-left: 12px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
}
nav button {
  border: 1px solid var(--ink);
  background: none;
  border-radius: 50%;
  padding: 9px;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 95px 6% 100px;
  gap: 60px;
  overflow: hidden;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(60px, 6.8vw, 100px);
  line-height: 1.01;
  letter-spacing: -6px;
  margin: 30px 0;
}
.hero h1 em {
  color: var(--orange);
  font-style: normal;
}
.lede {
  font-size: 19px;
  line-height: 1.75;
  max-width: 480px;
  color: #546665;
}
.actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
}
.primary {
  display: inline-block;
  padding: 18px 23px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: 13px;
}
.text-link {
  font-size: 12px;
}
.small {
  font-size: 11px;
  line-height: 1.8;
  color: #627473;
}
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 570px;
  background: radial-gradient(ellipse, #dfe9d570 20%, transparent 70%);
}
.sample-ticket {
  width: 330px;
  background: var(--mint);
  transform: rotate(8deg);
  border: 1px solid #183b3430;
  box-shadow:
    15px 20px 0 #ced9c070,
    25px 35px 50px #173e2b16;
  border-radius: 10px;
  position: relative;
}
.ticket-top {
  display: flex;
  justify-content: space-between;
  padding: 25px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.ticket-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -4px;
  padding: 32px 25px 48px;
  position: relative;
}
.ticket-title > span {
  position: absolute;
  bottom: 10px;
  right: 30px;
  font-size: 70px;
}
.ticket-details {
  display: flex;
  justify-content: space-between;
  padding: 25px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.7;
}
.tear {
  border-top: 2px dashed #142d2e50;
  position: relative;
  margin: 0 15px;
}
.tear:before,
.tear:after {
  content: "";
  position: absolute;
  top: -13px;
  background: var(--paper);
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.tear:before {
  left: -28px;
}
.tear:after {
  right: -28px;
}
.ticket-bottom {
  padding: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 8px;
  line-height: 1.8;
}
.barcode {
  height: 50px;
  width: 140px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px,
    transparent 2px 5px,
    var(--ink) 5px 6px,
    transparent 6px 10px
  );
}
.floating-note {
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 0;
  transform: rotate(-7deg);
  background: var(--orange);
  padding: 12px 17px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.accepted {
  position: absolute;
  bottom: 60px;
  left: -15px;
  display: flex;
  gap: 14px;
  padding: 19px 25px;
  align-items: center;
  border: 1px solid var(--line);
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px #14373315;
  transform: rotate(-4deg);
}
.accepted strong,
.accepted div > span {
  display: block;
}
.accepted div > span {
  font-size: 11px;
  color: #637570;
  margin-top: 6px;
}
.check {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
}
.art-caption {
  position: absolute;
  bottom: 0;
  font-size: 8px;
  letter-spacing: 1.5px;
}
.strip {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 6%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}
section:not(.hero) {
  padding: 95px 6%;
}
h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 1.12;
  margin: 22px 0;
}
h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.section-title > p:last-child {
  color: #607370;
  max-width: 500px;
  line-height: 1.7;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 45px;
}
.features article {
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-icon {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  margin-bottom: 24px;
  color: #7b8a70;
}
.features p {
  line-height: 1.75;
  color: #607370;
  font-size: 14px;
  margin-top: 0;
  flex: 1;
}
.pill {
  background: var(--mint);
  padding: 9px 12px;
  border-radius: 20px;
  font-size: 8px;
  letter-spacing: 0.6px;
  font-weight: 600;
  margin-top: 15px;
}
.pill.coral {
  background: #f6d7cb;
}
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: #e9eddf;
}
.how ol {
  padding: 0;
  list-style: none;
}
.how li {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid #bbc6b4;
  padding: 0 0 20px;
  margin: 0 0 25px;
}
.how li > span {
  font-family: "Space Grotesk";
  font-size: 15px;
  padding-top: 7px;
  color: #75866b;
}
.how h3 {
  margin: 0 0 12px;
}
.how p {
  line-height: 1.7;
  font-size: 14px;
}
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.workspace-grid > a {
  border-top: 1px solid var(--ink);
  padding: 22px 0;
}
.workspace-grid > a > span {
  float: right;
  font-size: 24px;
}
.workspace-grid p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
  color: #607370;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.6;
}
details p {
  line-height: 1.8;
  color: #607370;
  font-size: 14px;
}
.closing {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.closing h2 {
  font-size: 70px;
}
.closing em {
  font-style: normal;
  color: #edaa88;
}
.primary.light {
  background: var(--paper);
  color: var(--ink);
}
footer {
  font-size: 11px;
  padding-top: 35px;
  padding-bottom: 35px;
}
footer .brand {
  font-size: 25px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
@media (max-width: 800px) {
  header {
    padding: 20px 6%;
  }
  nav {
    gap: 16px;
  }
  nav > a:not(:last-of-type) {
    display: none;
  }
  .beta {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 50px;
    gap: 25px;
  }
  .hero h1 {
    font-size: clamp(52px, 16vw, 72px);
    letter-spacing: -4px;
  }
  .hero-art {
    min-height: 560px;
  }
  .floating-note {
    top: 35px;
  }
  .accepted {
    left: 0;
  }
  .strip {
    font-size: 10px;
    flex-wrap: wrap;
  }
  .strip > span:nth-child(even) {
    display: none;
  }
  .features,
  .workspace-grid,
  .how,
  .faq {
    grid-template-columns: 1fr;
  }
  section:not(.hero) {
    padding: 60px 6%;
  }
  .features {
    gap: 16px;
  }
  .how,
  .faq {
    gap: 25px;
  }
  h2 {
    font-size: 38px;
  }
  .closing h2 {
    font-size: 52px;
  }
  .actions {
    flex-wrap: wrap;
  }
  footer {
    flex-wrap: wrap;
  }
  .hero-art {
    max-width: 450px;
    width: 100%;
    margin: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
