@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@400;500;600;700;800;900&display=swap");

:root {
  --green: #06A26D;
  --image-fallback: #eeeeee;
  --leaf: #2d9e6b;
  --ink: #17201c;
  --muted: #64706a;
  --paper: #f7fbf5;
  --line: #d9e8dd;
  --gold: #d69b38;
  --plum: #704770;
  --radius: 16px;
  font-family: "Host Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}



* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: #fff;
  color: var(--ink);
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

button,
input {
  font: inherit;
}

input,
textarea {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  user-select: text;
}

img,
video,
canvas,
svg {
  -webkit-user-drag: none;
  user-drag: none;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 90svh;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(23, 32, 28, 0.06);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease;
}

.app-shell.scene-ready {
  opacity: 1;
  transform: translateY(0);
}

.app-shell.scene-fading {
  opacity: 0;
  transform: translateY(4px);
}

.app-error {
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.app-error h1 {
  margin: 0;
}

.app-error p {
  margin: 0;
  color: #4c5651;
}

.scene {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.scene.scroll {
  overflow-y: auto;
}

.pad {
  padding: 0px 20px 20px calc(20px + env(safe-area-inset-bottom));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: calc(12px + env(safe-area-inset-top)) 16px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 253, 249, 0.94);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 5;
}

.kicker {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  line-height: 1.3;
  font-weight: 500;
}

h1 {
  font-size: 22px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h1 {
  margin-bottom: 14px;
}

h2 {
  margin-bottom: 12px;
}

h3 {
  margin-bottom: 8px;
}

p {
  line-height: 1.4;
  color: #34433b;
  font-size: 16px;
  font-weight: 400;
}

.primary,
.secondary,
.tertiary {
  min-height: 50px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 22px;
  font-weight: 500;
  padding: 13px 16px;
}

.primary {
  background: var(--green);
  color: white;
}

.secondary {
  background: #fff;
  color: #121212;
  border-color: #06A26D;
}

.tertiary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button-row {
  display: grid;
  gap: 10px;
  /* margin-top: 20px; */
  padding-top: 20px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(23, 32, 28, 0.15);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 900;
}

.sheet-close {
  font-size: 0;
  color: transparent;
  background-image: url("./assets/images/close-general.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.splash {
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  /* background:
    linear-gradient(160deg, rgba(26, 107, 74, 0.92), rgba(47, 143, 131, 0.78)),
    radial-gradient(circle at 24% 18%, #f3d27a 0 9%, transparent 10%),
    linear-gradient(135deg, #0e4e39, #2b8c62); */
    background-image: url('./assets/images/background.png');
    background-size: cover;
    background-position: center;
}

.splash h1 {
  font-size: 32px;
  max-width: 320px;
  margin-bottom: 0;
}

.splash h3 {
  font-size: 26px;
  max-width: 320px;
  margin-bottom: 0;
}

.splash p,
.splash .brand {
  color: rgba(255, 255, 255, 0.9);
  
}

.splash p {
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 400;
}

.brand {
  position: absolute;
  bottom: 34px;
  font-weight: 900;
}
.brand img{
  max-width: 60px;
}

.splash h1, .splash h3, .splash p{
  color: #000000;
}

.hero-art {
  min-height: 40svh;
  background-image: url("./assets/images/intro-cover.png");
  background-size: cover;
  background-position: center bottom;
}

.intro-scene .pad {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-stage {
  flex: 1;
  background: #000;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
  border-radius: 0;
}

.prologue-camera,
.prologue-camera-fallback,
.prof-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.prologue-camera,
.prologue-camera-fallback {
  object-fit: cover;
}

.prologue-camera {
  z-index: 1;
}

.prologue-camera-fallback {
  z-index: 0;
  background: #000;
}

.prologue-camera-fallback.camera-denied:after {
  content: "Camera permission is needed to view the transparent prologue in context.";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 22px;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.prof-video {
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
}

.prologue-caption {
  text-align: left;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: calc(0px + env(safe-area-inset-bottom));
  padding: 20px;
  padding-bottom: 80px;
  /* border-radius: var(--radius); */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
}

.prologue-caption h2 {
  color: white;
  margin-bottom: 4px;
}

.prologue-caption p {
  color: rgba(255, 255, 255, .88);
  margin: 0;
  font-size: 14px;
}

.prologue-transcript {
  position: absolute;
  z-index: 4;
  bottom: calc(175px + env(safe-area-inset-top));
  left: 20px;
  right: 20px;
  max-height: 118px;
  overflow-y: auto;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .5);
  color: white;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  backdrop-filter: blur(10px);
}

.prologue-status {
  position: absolute;
  z-index: 4;
  left: 20px;
  right: 20px;
  top: calc(22px + env(safe-area-inset-top));
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .5);
  color: white;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  backdrop-filter: blur(10px);
}

.prologue-status[hidden] {
  display: none;
}

.sound-prompt {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: calc(154px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 999px;
  background: rgba(0, 0, 0, .58);
  color: white;
  font-weight: 900;
  padding: 0 18px;
  backdrop-filter: blur(10px);
}

.sound-prompt[hidden] {
  display: none;
}

.video-controls {
  position: absolute;
  z-index: 4;
  left: 20px;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.prof-teh-video-title {
  font-size: 26px;
  font-weight: 600;
}

.prof-teh-video-subtitle {
  font-size: 18px;
  font-weight: 400;
}

.video-control-button {
  width: auto;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  color: white;
  font-weight: 400;
  padding: 10px 0;
  outline: 0;
  backdrop-filter: none;
  appearance: none;
  -webkit-appearance: none;
}

.transcript-text {
  white-space: pre-line;
  color: #3f4542;
  font-size: 17px;
  line-height: 1.55;
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 16px 8px;
}

.tab {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 13px;
}

.tab.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.route-select-scene {
  background: white;
  touch-action: pan-y;
  overflow: hidden;
}

.route-select-header {
  position: relative;
  z-index: 1;
  padding-top: calc(40px + env(safe-area-inset-top));
  background: transparent;
  /* box-shadow: 0 8px 18px rgba(23, 32, 28, .08); */
}

.route-select-header h1 {
  text-align: center;
  font-size: 22px;
  line-height: 1.12;
  margin: 0 20px 20px;
}

.route-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 0;
  margin: 0 8px;
  padding: 8px;
  border-radius: 16px;
  background: #e4e4e4;
  touch-action: pan-y;
}

.route-tab {
  /* min-height: 84px; */
  border: 0;
  background: transparent;
  border-radius: 12px;
  color: #969696;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.05;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-tab.active {
  color: #111;
  background: #fff;
}

.route-select-body {
  position: relative;
  z-index: 1;
  padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
}
.route-select-button {
  position: relative;
  z-index: 1;
  padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
}

.route-explore{
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 0px 0 12px 0;
}

.route-hint {
   font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #656565;
  padding: 10px;
}

.route-notice-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, .24);
  backdrop-filter: blur(5px);
}

.route-notice {
  width: min(100%, 360px);
  padding: 24px 20px 18px;
  border-radius: 20px;
  background: #fff;
  color: #17201c;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  text-align: center;
}

.route-notice p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.route-notice-ok {
  width: 100%;
  min-height: 50px;
  font-size: 20px;
}

.route-select-body h2 {
  text-align: center;
  color: #353638;
  font-size: 27px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.route-map-preview {
  position: relative;
  aspect-ratio: .86 / 1;
  border-radius: 16px;
  overflow: visible;
  background: var(--image-fallback);
}
.route-map-preview.has-map-image {
  background: var(--route-map-image) center / cover no-repeat;
}

.route-map-preview:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0 16%, rgba(255, 255, 255, .34) 16% 24%, transparent 24% 69%, rgba(255, 255, 255, .42) 69% 78%, transparent 78%),
    linear-gradient(12deg, transparent 0 68%, rgba(255, 255, 255, .28) 68% 77%, transparent 77%);
}
.route-map-preview.has-map-image:before {
  display: none;
}

.block-label,
.museum-label {
  position: absolute;
  z-index: 2;
  color: #747873;
  font-size: 20px;
  line-height: 1.1;
}

.block-label {
  top: 28px;
  right: 24px;
}

.museum-label {
  top: 26%;
  left: 22px;
}

.route-plant {
  position: absolute;
  z-index: 3;
  width: 132px;
  transform: translate(-50%, -10%);
  text-align: center;
  color: #353638;
  border: 0;
  background: transparent;
  padding: 0;
}

.route-plant span {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 6px;
  border-radius: 50%;
  /* border: 2px solid rgba(255, 255, 255, .72); */
  /* box-shadow: 0 5px 14px rgba(23, 32, 28, .18); */
  /* background: radial-gradient(circle at 36% 34%, #f5e24f 0 16%, #5c9f32 17% 54%, #173d20 55%); */
  /* color: white; */
  /* font-size: 32px; */
  /* font-weight: 900;
  line-height: 58px; */
  overflow: hidden;
}

.route-plant span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.route-plant strong {
  display: block;
  font-size: 14px;
  line-height: 1.06;
  font-weight: 400;
}

.route-plant.done span {
  background: transparent;
}

.route-plant.done {
  pointer-events: none;
  cursor: default;
}

.route-cta {
  /* margin-top: 40px; */
  /* margin-top: auto; */
  /* min-height: 76px; */
  border-radius: var(--radius);
  font-size: 22px;
  font-weight: 500;
}

.selected-route-page {
  background: white;
}

.selected-route-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(40px + env(safe-area-inset-top));
}

.selected-route-inner h1 {
  text-align: center;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.selected-route-subtitle {
  text-align: center;
  color: #333638;
  font-size: 16px;
  line-height: 1.18;
  max-width: 460px;
  margin: 0 auto 30px;
}

.selected-route-page .route-map-preview {
  margin: 0;
  aspect-ratio: .86 / 1;
}

.selected-route-guide {
  margin: 20px auto;
  max-width: 100%;
  text-align: center;
}

.selected-route-guide img {
  display: block;
  width: 100%;
  height: auto;
  margin: 12px auto 12px;
}

.selected-route-note {
  margin: 0 auto;
  padding: 20px 0px 0px 0px;
  max-width: 100%;
  text-align: center;
  color: #686b6e;
  font-size: 14px;
  line-height: 1.2;
}

.selected-route-actions .primary {
  /* min-height: 76px; */
  border-radius: var(--radius);
  font-size: 22px;
  font-weight: 500;
}

.map {
  margin: 18px 0;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.82), rgba(232, 244, 234, 0.86)),
    repeating-linear-gradient(35deg, transparent 0 24px, rgba(26, 107, 74, 0.06) 25px 27px);
  overflow: hidden;
}

.map:before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 3px dashed rgba(26, 107, 74, 0.28);
  border-radius: 45% 55% 48% 52%;
  transform: rotate(-18deg);
}

.pin {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  border: 2px solid currentColor;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(23, 32, 28, 0.12);
}

button.pin {
  padding: 0;
  cursor: pointer;
}

.map-clickable button.pin:active {
  transform: scale(.94);
}

.pin.done {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.pin.done {
  pointer-events: none;
  cursor: default;
}

.pin.locked {
  opacity: .38;
}

.scanner {
  flex: 1;
  background: #fff;
  color: #101513;
  display: flex;
  flex-direction: column;
  padding: calc(34px + env(safe-area-inset-top)) 30px calc(28px + env(safe-area-inset-bottom));
  background-image: url("./assets/images/background.png");
  background-size: cover;
  background-position: center;
}
.scanner-back {
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  margin-bottom: 92px;
}
.scanner-pad {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.scanner h1 {
  margin: 0;
  text-align: center;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}
.scan-camera-card {
  width: 100%;
  aspect-ratio: 1 / .98;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000000;
  position: relative;
  /* background: #dfe5dc url("./assets/images/qr-scan.png") center / cover no-repeat; */
}

.scan-target-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(68%, 300px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.scan-target-frame span {
  position: absolute;
  width: 48px;
  height: 48px;
  border-color: #ffffff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
}

.scan-target-frame span:nth-child(1) {
  left: 0;
  top: 0;
  border-top: 5px solid;
  border-left: 5px solid;
  border-radius: 14px 0 0 0;
}

.scan-target-frame span:nth-child(2) {
  right: 0;
  top: 0;
  border-top: 5px solid;
  border-right: 5px solid;
  border-radius: 0 14px 0 0;
}

.scan-target-frame span:nth-child(3) {
  right: 0;
  bottom: 0;
  border-right: 5px solid;
  border-bottom: 5px solid;
  border-radius: 0 0 14px 0;
}

.scan-target-frame span:nth-child(4) {
  left: 0;
  bottom: 0;
  border-bottom: 5px solid;
  border-left: 5px solid;
  border-radius: 0 0 0 14px;
}

.scan-target-frame i {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 14%;
  height: 3px;
  border-radius: 999px;
  background: #06a26d;
  box-shadow: 0 0 16px rgba(6, 162, 109, .9);
  animation: scanLineMove 1.8s ease-in-out infinite;
}

@keyframes scanLineMove {
  0%, 100% {
    transform: translateY(0);
    opacity: .55;
  }
  50% {
    transform: translateY(220px);
    opacity: 1;
  }
}

.scan-status {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, .58);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.scan-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 20px;
  color: #fff;
  background: rgba(0, 0, 0, .72);
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
}

.scan-loading::before {
  content: "";
  width: 36px;
  height: 36px;
  border: 4px solid rgba(255, 255, 255, .36);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: scanLoadingSpin .8s linear infinite;
}

.scan-loading[hidden] {
  display: none;
}

@keyframes scanLoadingSpin {
  to {
    transform: rotate(360deg);
  }
}

.scanner video,
.camera video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}
.scan-message {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
  margin: 0;
  color: #151715;
  text-align: left;
}
.scan-message span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 3px solid #d72525;
  border-radius: 50%;
  color: #d72525;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.scan-message p {
  margin: 0;
  color: #151715;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
}

/*show qr bypass*/
.qr-demo-tools {
  display: grid;
  gap: 12px;
  display: none;
}

.manual-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.manual-grid button {
  border: 1px solid rgba(6, 162, 109, .25);
  background: rgba(6, 162, 109, .08);
  color: var(--green);
  border-radius: var(--radius);
  min-height: 42px;
}

.manual-grid button:disabled {
  opacity: .32;
}

.progress-line {
  height: 8px;
  background: #e3eee7;
  border-radius: 999px;
  overflow: hidden;
}

.progress-line span {
  display: block;
  height: 100%;
  background: var(--green);
}

.station-intro-page {
  background: #fff;
  background-image: var(--station-plant-image);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.station-intro-inner {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: calc(40px + env(safe-area-inset-top));
}

.station-intro-copy h1 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.station-intro-copy p {
  color: #343434;
  font-size: 16px;
  line-height: 1.45;
  max-width: 480px;
}

.station-plant-visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 500px;
  margin: -10px -20px 0;
  overflow: hidden;
}

.station-plant-visual:after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 0;
  height: 118px;
  background: linear-gradient(0deg, #fff 8%, rgba(255, 255, 255, .86) 45%, rgba(255, 255, 255, 0));
  z-index: 4;
}

.station-plant-image-wrap {
  position: relative;
  flex: 1 1 auto;
  min-height: 500px;
  margin: -10px -20px 0;
  overflow: hidden;
}

/* .station-plant-image-wrap:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 118px;
  background: linear-gradient(0deg, #fff 8%, rgba(255, 255, 255, .86) 45%, rgba(255, 255, 255, 0));
  z-index: 2;
} */

.stem {
  position: absolute;
  bottom: 18px;
  width: 7px;
  height: 300px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7fa315, #44820f);
  transform-origin: bottom center;
  z-index: 1;
}

.stem-1 {
  left: 45%;
  height: 440px;
  transform: rotate(-12deg);
}

.stem-2 {
  left: 55%;
  height: 470px;
  transform: rotate(10deg);
}

.stem-3 {
  left: 63%;
  height: 360px;
  transform: rotate(2deg);
}

.stem-4 {
  left: 38%;
  height: 330px;
  transform: rotate(-3deg);
}

.stem-5 {
  left: 50%;
  height: 250px;
  transform: rotate(5deg);
}

.stem-6 {
  left: 32%;
  height: 170px;
  transform: rotate(-18deg);
}

.stem-7 {
  left: 70%;
  height: 170px;
  transform: rotate(8deg);
}

.stem-8 {
  left: 47%;
  height: 155px;
  transform: rotate(-5deg);
}

.stem-9 {
  left: 58%;
  height: 130px;
  transform: rotate(14deg);
}

.stem-10 {
  left: 76%;
  height: 92px;
  transform: rotate(5deg);
}

.orchid {
  position: absolute;
  width: 138px;
  height: 112px;
  z-index: 3;
}

.orchid:before,
.orchid:after {
  content: "";
  position: absolute;
  border-radius: 58% 42% 64% 36%;
  background:
    radial-gradient(circle at 54% 58%, #b93582 0 10%, transparent 11%),
    radial-gradient(ellipse at 50% 48%, #f3b2ee 0 34%, #c540c6 56%, rgba(255, 255, 255, .86) 78%);
  box-shadow: 0 7px 14px rgba(161, 52, 147, .16);
}

.orchid:before {
  left: 16px;
  top: 12px;
  width: 76px;
  height: 92px;
  transform: rotate(-34deg);
}

.orchid:after {
  right: 10px;
  top: 20px;
  width: 82px;
  height: 76px;
  transform: rotate(28deg);
}

.orchid-1 {
  left: 11%;
  top: 34%;
  transform: rotate(-18deg) scale(.9);
}

.orchid-2 {
  left: 34%;
  top: 22%;
  transform: rotate(8deg) scale(1);
}

.orchid-3 {
  right: 8%;
  top: 10%;
  transform: rotate(18deg) scale(1.05);
}

.orchid-4 {
  right: 22%;
  top: 30%;
  transform: rotate(-12deg) scale(.95);
}

.orchid-5 {
  left: 2%;
  bottom: 18%;
  transform: rotate(-20deg) scale(.92);
}

.orchid-6 {
  left: 24%;
  bottom: 17%;
  transform: rotate(12deg) scale(.82);
}

.orchid-7 {
  left: 50%;
  bottom: 20%;
  transform: rotate(0deg) scale(1.1);
}

.orchid-8 {
  right: 8%;
  top: 25%;
  transform: rotate(-18deg) scale(.9);
}

.leaf {
  position: absolute;
  width: 86px;
  height: 28px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(90deg, #0f5d24, #7ec83f);
  transform-origin: left center;
  z-index: 2;
}

.leaf-1 {
  left: 44%;
  top: 22%;
  transform: rotate(-48deg) scale(1.35);
}

.leaf-2 {
  left: 48%;
  top: 27%;
  transform: rotate(36deg) scale(1.25);
}

.leaf-3 {
  left: 39%;
  top: 34%;
  transform: rotate(-26deg) scale(1.15);
}

.leaf-4 {
  left: 52%;
  top: 39%;
  transform: rotate(22deg) scale(1.25);
}

.leaf-5 {
  left: 35%;
  top: 47%;
  transform: rotate(-38deg);
}

.leaf-6 {
  left: 56%;
  top: 51%;
  transform: rotate(28deg);
}

.leaf-7 {
  left: 42%;
  top: 58%;
  transform: rotate(-22deg);
}

.leaf-8 {
  left: 50%;
  top: 64%;
  transform: rotate(16deg);
}

.leaf-9 {
  left: 31%;
  top: 67%;
  transform: rotate(-42deg) scale(.9);
}

.leaf-10 {
  left: 61%;
  top: 70%;
  transform: rotate(33deg) scale(.9);
}

.leaf-11 {
  left: 46%;
  top: 76%;
  transform: rotate(-10deg) scale(.8);
}

.leaf-12 {
  left: 54%;
  top: 80%;
  transform: rotate(10deg) scale(.8);
}

.leaf-13 {
  left: 26%;
  top: 40%;
  transform: rotate(-58deg) scale(.8);
}

.leaf-14 {
  left: 66%;
  top: 43%;
  transform: rotate(48deg) scale(.8);
}

.leaf-15 {
  left: 36%;
  top: 82%;
  transform: rotate(-26deg) scale(.72);
}

.leaf-16 {
  left: 62%;
  top: 84%;
  transform: rotate(20deg) scale(.72);
}

.visual-leaf .orchid,
.visual-herb .orchid {
  display: none;
}

.visual-flowerCluster .orchid {
  transform: scale(.62);
}

.visual-flowerCluster .orchid:before,
.visual-flowerCluster .orchid:after {
  background:
    radial-gradient(circle at 50% 50%, #f3b51d 0 18%, #d86d12 19% 46%, #f0a21a 47% 72%, transparent 73%);
}

.visual-herb .leaf {
  width: 70px;
  height: 20px;
  background: linear-gradient(90deg, #2a8b46, #b4e27b);
}

.fruit {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d8f472 0 18%, #64a61f 19% 72%, #2f6418 73%);
  z-index: 3;
}

.fruit-1 {
  left: 42%;
  top: 30%;
}

.fruit-2 {
  left: 50%;
  top: 34%;
}

.fruit-3 {
  left: 46%;
  top: 41%;
}

.fruit-4 {
  left: 56%;
  top: 45%;
}

.fruit-5 {
  left: 38%;
  top: 50%;
}

.fruit-6 {
  left: 49%;
  top: 55%;
}

.fruit-7 {
  left: 58%;
  top: 61%;
}

.fruit-8 {
  left: 34%;
  top: 62%;
}

.fruit-9 {
  left: 45%;
  top: 70%;
}

.fruit-10 {
  left: 55%;
  top: 74%;
}

.station-intro-title {
  position: relative;
  z-index: 5;
  margin-top: -32px;
}

.station-intro-title h2 {
  color: #303235;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.station-intro-title p {
  color: #6a6c6f;
  font-size: 16px;
  line-height: 1.4;
}

.station-screen {
  background: #fff;
  overflow-x: clip;
  min-height: 100dvh;
}

.station-title {
  padding: calc(42px + env(safe-area-inset-top)) 22px 18px;
  text-align: center;
}

.station-title h1 {
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1.1;
}

.station-title p {
  margin: 0;
  color: #737373;
  font-size: 16px;
  line-height: 1.4;
  font-style: normal;
}

.station-title .kicker {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 10px;
}

.feature-carousel {
  padding: 16px 0 28px;
  overflow: hidden;
  scrollbar-width: none;
}

.loop-carousel {
  display: block;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 16px 0 28px;
  position: relative;
}

.feature-track {
  display: block;
  width: 100%;
  padding: 0;
  transform-origin: center;
}

.feature-track .slick-list {
  overflow: visible;
}

.feature-track .slick-track {
  display: flex;
  align-items: stretch;
}

.feature-track .slick-slide {
  height: auto;
  /* padding: 0 10px; */
}

.feature-track .slick-slide>div,
.feature-track .slick-slide .feature-card {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.loop-carousel .feature-card {
  width: 100%;
  height: 400px;
  max-height: 400px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  opacity: .86;
  transform: scale(.94);
  transform-origin: center;
  transition: transform .22s ease, opacity .22s ease, box-shadow .22s ease;
}

.loop-carousel .feature-card:not(.is-active) {
  box-shadow: 0 6px 14px rgba(0, 0, 0, .10);
}

.loop-carousel .feature-card.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

.feature-carousel::-webkit-scrollbar,
.cycle-strip::-webkit-scrollbar {
  display: none;
}

.intro-carousel {
  grid-auto-columns: 86%;
  padding-top: 4px;
}

.feature-card {
  min-height: 400px;
  scroll-snap-align: center;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  padding: 0;
  background: var(--image-fallback);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
  text-align: left;
}

.active-feature {
  min-height: 360px;
}

.feature-image {
  position: absolute;
  inset: 0;
  background: var(--image-fallback);
  background-position: center;
  background-size: cover;
}

.feature-image.has-background {
  background-image: var(--feature-bg);
}

.feature-image img,
.plant-image img,
.cycle-flower img,
.chromosome-visual img,
.circos-plot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.plant-image img{
  object-fit: cover;
}

.feature-image:has(img),
.plant-image:has(img),
.cycle-flower:has(img),
.chromosome-visual.image-visual,
.circos-plot.image-visual {
  background: transparent;
}

.feature-image:has(img):after,
.feature-image.has-background:after,
.plant-image:has(img):after,
.cycle-flower:has(img):before,
.cycle-flower:has(img):after,
.chromosome-visual.image-visual .gene-dot,
.circos-plot.image-visual:before {
  display: none;
}

.feature-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .72));
  z-index: 2;
}

.feature-image:after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 48% 52% 42% 58%;
  background: rgba(255, 255, 255, .28);
  transform: rotate(-18deg);
}

.garden-image {
  background: var(--image-fallback);
}

.garden-image:after {
  inset: auto 0 0;
  height: 42%;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(255, 255, 255, .62) 6% 8%, transparent 8% 13%, rgba(255, 255, 255, .52) 13% 16%, transparent 16% 24%, rgba(255, 255, 255, .66) 24% 28%, transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .35));
  transform: none;
}

.genome-image {
  background: var(--image-fallback);
}

.plant-image {
  background: var(--image-fallback);
}

.feature-image.has-background {
  background: var(--feature-bg) center / cover no-repeat, var(--image-fallback);
}

.feature-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  max-height: 44%;
  z-index: 3;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-copy h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
}

.feature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  line-height: 1.1;
}

.station-body {
  background: #fff;
  padding-top: 8px;
  padding-bottom: calc(48px + env(safe-area-inset-bottom));
}

.station-actions {
  padding: 20px;
  background: #fff;
  padding-top: 8px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.station-actions .button-row {
  padding-top: 8px;
}

.station-cycle-section {
  background: #fff;
  margin: 0;
  padding: 0;
}

.cycle-carousel {
  display: block;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 0 0 34px;
  position: relative;
}

.plant-card {
  min-height: 210px;
  scroll-snap-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  overflow: hidden;
  text-align: left;
  padding: 0;
}

.plant-image {
  height: 142px;
  background: var(--image-fallback);
  position: relative;
}

.plant-image:after {
  content: "";
  position: absolute;
  inset: 28px 52px;
  border-radius: 55% 45%;
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(-24deg);
}

.plant-card h3 {
  padding: 14px 14px 0;
}

.plant-card p {
  padding: 0 14px 14px;
  font-size: 14px;
}

.cycle-note {
  text-align: center;
  color: #343434;
  font-size: 14px;
  margin: 14px 0 18px;
}

.cycle-strip {
  display: block;
  width: 100%;
  padding: 0;
  transform-origin: center;
}

.cycle-strip .slick-list {
  overflow: visible;
}

.cycle-strip .slick-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
}

.cycle-strip .slick-slide {
  height: auto;
  padding: 0 8px;
  width: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.cycle-strip .slick-slide>div,
.cycle-strip .cycle-item {
  height: 100%;
}

.cycle-item {
  width: 160px;
  min-width: 0;
  text-align: center;
  opacity: 1;
  transform: none;
  transition: transform .22s ease, opacity .22s ease;
  will-change: transform;
}

.cycle-strip .slick-current .cycle-item {
  opacity: 1;
  transform: none;
}

.cycle-item h3 {
  margin: 8px 0 2px;
  font-size: 16px;
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

.cycle-item p {
  margin: 0;
  color: #595959;
  font-size: 12px;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
}

.cycle-flower {
  height: 138px;
  position: relative;
  background: var(--image-fallback);
}

.cycle-flower:before,
.cycle-flower:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 58px;
  border-radius: 54% 46% 52% 48%;
  background: radial-gradient(circle at 45% 54%, #d8d8d8, #b8b8b8 38%, rgba(255, 255, 255, .82) 72%);
  transform-origin: 0 50%;
}

.cycle-flower:before {
  transform: translate(-50%, -50%) rotate(-28deg);
}

.cycle-flower:after {
  transform: translate(-50%, -50%) rotate(28deg);
}

.cycle-flower {
  background: var(--image-fallback);
  background-repeat: no-repeat;
}

.flower-3 {
  filter: none;
  opacity: 1;
}

.three-d-cta {
  width: 100%;
  min-height: 92px;
  border: 0;
  border-radius: 14px;
  padding: 18px 22px;
  margin: 10px 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: white;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  background:
    var(--three-bg);
  background-size: cover;
  background-position: center;
}

.three-d-cta span{
  max-width: 250px;
}

.three-d-cta strong {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .92);
  color: #54536b;
  font-size: 34px;
  line-height: 1;
}
.reward-page{
padding-top: calc(40px + env(safe-area-inset-top));
  background-image: url("./assets/images/background.png");
  background-size: cover;
  background-position: center;
}

.reward-page h1{
  margin-bottom: 40px;
  text-align: center;
}

.reward-page-message {
  margin: -24px auto 28px;
  max-width: 440px;
  color: #333638;
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
}

.reward-page > .button-row {
  gap: 24px;
}

.reward-card {
  border-radius: var(--radius);
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background: linear-gradient(145deg, #1a6b4a, #2f8f83 60%, #d69b38);
  box-shadow: 0 18px 40px rgba(26, 107, 74, 0.24);
}

.wellness-profile-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--reward-profile-image) center / cover no-repeat;
  box-shadow: 0 18px 40px rgba(18, 58, 41, .22);
  cursor: pointer;
}

.reward-card strong {
  font-size: 22px;
  line-height: 1;
}

.reward-trail-time-block {
  position: absolute;
  /* left: 48%; */
  left: 39%;
  bottom: calc(5% + 19px);
  /* transform: translateX(-48%); */
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .28);
}

.reward-card .reward-trail-time {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.reward-trail-time-block p {
  margin: 3px 0 0;
  color: #fff;
  font-size: 8px;
  line-height: 1.15;
  font-weight: 400;
  text-align: left;
}

.reward-extend-prompt {
  margin: 42px 0 24px;
  color: #111;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
}

.tap-share-button {
  border: 0;
  background: transparent;
  color: #6a6a6a;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  padding: 10px 0 0;
  /* margin-bottom: 60px; */
}

.outline-primary {
  width: 100%;
  min-height: 78px;
  border: 1.5px solid var(--green);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
}

.hidden-canvas {
  display: none;
}

.camera {
  min-height: 100svh;
  background: #0a1814;
  color: white;
}

.camera-wrap {
  position: relative;
}

.camera-overlay {
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, .75);
  display: grid;
  place-items: end center;
  padding: 18px;
  pointer-events: none;
}

.final-camera {
  background: #fff;
  color: var(--ink);
  overflow: hidden;
}

.final-pattern {
  position: absolute;
  inset: 0;
  background-image: url("./assets/images/background.png");
  background-size: cover;
  background-position: center;
}

.final-camera-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(100px + env(safe-area-inset-top));
}

.final-retake-link {
  position: absolute;
  left: 20px;
  top: 20px;
  display: block;
  width: fit-content;
  min-height: 36px;
  margin: 0 0 30px;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  padding: 0;
}

.final-retake-link[hidden] {
  display: none;
}

.final-camera h1 {
  text-align: center;
  font-size: 18px;
  line-height: 1.22;
  margin: 0 auto 26px;
  max-width: 440px;
}

.garden-photo-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--image-fallback);
  color: white;
  box-shadow: 0 16px 34px rgba(23, 32, 28, .18);
}

.garden-photo-card video,
.captured-photo,
.garden-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.garden-photo-card video {
  z-index: 1;
}

.camera-unavailable-message {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  z-index: 2;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .48);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.camera-unavailable-message[hidden] {
  display: none;
}

.captured-photo {
  z-index: 1;
}

.final-profile-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.final-reward-time-block {
  position: absolute;
  left: 39%;
  bottom: calc(5% + 19px);
  z-index: 4;
  color: #fff;
  text-align: left;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .28);
  pointer-events: none;
}

.final-reward-time-block strong {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.final-reward-time-block p {
  margin: 3px 0 0;
  color: #fff;
  font-size: 8px;
  line-height: 1.15;
  font-weight: 400;
  text-align: left;
}

.garden-photo-card.photo-captured .garden-fallback,
.garden-photo-card.photo-captured .photo-brand,
.garden-photo-card.photo-captured .photo-logo,
.garden-photo-card.photo-captured .profile-graphic,
.garden-photo-card.photo-captured .photo-stats,
.garden-photo-card.photo-captured .final-profile-overlay,
.garden-photo-card.photo-captured .final-reward-time-block {
  display: none;
}

.garden-fallback {
  z-index: 0;
  background: var(--image-fallback);
}

.photo-brand {
  position: absolute;
  top: 28px;
  right: 24px;
  z-index: 2;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.12;
  text-align: left;
}

.photo-logo {
  position: absolute;
  top: 30px;
  left: 28px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 50% 50% 50% 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  transform: rotate(-35deg);
}

.profile-graphic {
  position: absolute;
  z-index: 2;
  inset: 18% 22% 24% 30%;
  width: 48%;
  height: 54%;
  overflow: visible;
}

.profile-graphic polyline {
  fill: rgba(255, 255, 255, .14);
  stroke: white;
  stroke-width: 6;
  stroke-linejoin: round;
}

.profile-graphic circle {
  fill: white;
}

.photo-stats {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.photo-stats strong {
  display: block;
  color: white;
  font-size: 34px;
  line-height: 1;
}

.photo-stats p {
  margin: 4px 0 0;
  color: white;
  font-size: 12px;
  line-height: 1.12;
}

.stat-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
  border: 3px solid currentColor;
}

.leaf-icon {
  color: #13cba6;
  border-radius: 80% 0 80% 0;
  transform: rotate(-25deg);
}

.walk-icon {
  color: #ffd21c;
  border-width: 0;
}

.walk-icon:before {
  content: "i";
  font-size: 28px;
  font-weight: 900;
}

.bulb-icon {
  color: #e02ca4;
  border-radius: 50%;
  position: relative;
}

.camera-button {
  width: 78px;
  height: 78px;
  border: 0;
  background: url("./assets/images/camera-button.svg") center / contain no-repeat;
  box-shadow: none;
  display: block;
  margin: 60px auto 26px;
  padding: 0;
}

.camera-button[hidden] {
  display: none;
}

.camera-button span {
  display: none;
}

.final-actions {
  margin-bottom: 24px;
}

.final-actions .tap-share-button {
  font-size: 14px;
  line-height: 1.2;
  padding: 0;
  margin: 0 0 18px;
  justify-self: center;
}

.final-actions[hidden] {
  display: none;
}

.thanks-page {
  background: #fff;
  position: relative;
}

.thanks-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(40px + env(safe-area-inset-top));
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.thanks-inner>h1 {
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 30px;
  text-align: center;
}

.thanks-inner>h2,
.reference-block h2 {
  color: #595b5d;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.discovery-card {
  overflow: hidden;
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 28px rgba(23, 32, 28, .14);
  margin-bottom: 24px;
}

.discovery-image {
  height: 100px;
  display: flex;
  align-items: end;
  padding: 20px;
  color: white;
  background-size: cover;
  background-position: center;
}

.discovery-image h3 {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.lab-image {
  /* background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .52)),
    linear-gradient(115deg, #2d7896, #dce8ed 46%, #10324a); */
    background-image: url('./assets/images/thankyoupage/image1.png');
    background-size: cover;
}

.lab-image:before {
  content: "";
}

.flower-image {
  /* background:
    linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .5)),
    radial-gradient(circle at 34% 36%, #f19319 0 7%, transparent 8%),
    radial-gradient(circle at 55% 30%, #f6aa1c 0 9%, transparent 10%),
    radial-gradient(circle at 72% 44%, #e97f18 0 8%, transparent 9%),
    linear-gradient(135deg, #2e6d2e, #88a832); */
      background-image: url('./assets/images/thankyoupage/image2.png');
    background-size: cover;
}

.discovery-body {
  padding: 20px;
}

.discovery-body p {
  color: #404244;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 25px;
}

.outline-link,
.text-link,
.restart-link {
  border: 0;
  background: transparent;
  color: #007045;
}

.reference-block .text-link{
  color: #007045;
}

.outline-link {
  text-decoration: none;
  border: 2px solid #007045;
  border-radius: 12px;
  min-height: 35px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
}

.discovery-body > .outline-link {
  padding: 8px;
  color: #007045;
}

.outline-link span,
.text-link span {
  font-size: 20px;
  vertical-align: -2px;
}

.reference-block {
  margin-top: 45px;
}

.reference-block p {
  color: #6b6d70;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.text-link {
  padding: 0;
  font-size: 14px;
}

.ai-note {
  margin-top: 30px;
  color: #9a9c9e;
  font-size: 12px;
  line-height: 1.1;
}

.thanks-logo {
  width: 100%;
  height: 62px;
  margin: 40px auto 12px;
  background: url("./assets/images/thankyoupage/logo.svg") center / contain no-repeat;
}

.thanks-logo:after {
  content: none;
}

.restart-link {
  display: block;
  margin: 0 auto;
  color: #656565;
  text-decoration: underline;
  font-size: 12px;
  font-weight: 400;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .34);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: end;
}

body.sheet-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.sheet {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  height: 95svh;
  max-height: 95svh;
  overflow: hidden;
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 10px 20px calc(24px + env(safe-area-inset-bottom));
  animation: sheetIn .22s ease-out;
  will-change: transform;
  touch-action: pan-y;
  overscroll-behavior-y: contain;
}

@keyframes sheetIn {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.sheet-dragging {
  transition: none;
  cursor: grabbing;
}

.sheet-dismissing {
  transition: transform .18s ease-in;
}

.sheet-backdrop-dismissing {
  transition: opacity .18s ease-in;
  opacity: 0;
}

.sheet-handle {
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: #c9d4ce;
  margin: 6px auto 16px;
  touch-action: none;
  cursor: grab;
}

.sheet-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 8;
}

.sheet-content {
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

.sheet .plant-image {
  height: 240px;
  border-radius: var(--radius);
  margin: 14px 0;
}

.plant-sheet-shell {
  max-height: 95svh;
  padding: 0 0 calc(0px + env(safe-area-inset-bottom));
  border-radius: 22px 22px 0 0;
}

.plant-sheet-shell .sheet-content {
  overflow: hidden;
}

.plant-sheet-shell .sheet-handle {
  display: none;
}

.plant-sheet-shell .sheet-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background-color: transparent;
  background-image: url("./assets/images/close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  backdrop-filter: none;
}

.plant-sheet-content .plant-sheet-hero {
  flex: 0 0 auto;
  height: min(42svh, 268px);
  min-height: 268px;
  margin: 0;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.plant-sheet-content {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
/* .sheet-content{
  padding-top: 30px;
} */

.sheet-content h2{
  text-align: center;
}

.plant-sheet-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08) 30%, rgba(0, 0, 0, .64));
}

.plant-sheet-hero h2 {
  position: absolute;
  left: 20px;
  right: 72px;
  bottom: 28px;
  z-index: 3;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  text-align: left;
}

.plant-sheet-content .sheet-copy {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding: 20px 20px 0;
}

.genome-intro-content .sheet-copy {
  padding-bottom: 12px;
}

.genome-intro-actions {
  flex: 0 0 auto;
  padding: 20px;
}

.genome-intro-actions .primary {
  width: 100%;
}

.sheet-copy,
.sheet-copy p,
.sheet-copy li {
  font-size: 16px;
  line-height: 1.4;
}

.sheet-copy p,
.sheet-copy ul,
.sheet-copy ol {
  margin: 0 0 26px;
}

.model-viewer {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  border-radius: 0;
  background: #fff;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  color: #101513;
  touch-action: none;
}

.model-viewer canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
  cursor: grab;
  opacity: 0;
  transition: opacity .18s ease;
}

.model-viewer.loaded canvas {
  opacity: 1;
}

.model-viewer canvas:active {
  cursor: grabbing;
}

.viewer-error {
  color: #101513;
  padding: 20px;
}

.model-loading {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px;
  color: #101513;
  background: #fff;
  pointer-events: none;
  opacity: 1;
  transition: opacity .2s ease;
}

.model-loading-done {
  opacity: 0;
}

.model-loading-orbit {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(6, 162, 109, .16);
  border-top-color: var(--green);
  position: relative;
  animation: modelLoaderSpin .9s linear infinite;
}

.model-loading-orbit:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(6, 162, 109, .45);
}

@keyframes modelLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.model-loading strong {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.model-loading span {
  width: min(220px, 64%);
  height: 5px;
  border-radius: 999px;
  background: #e6ece8;
  overflow: hidden;
}

.model-loading i {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width .18s ease;
  animation: modelProgressPulse 1.1s ease-in-out infinite;
}

.model-ready .model-loading i {
  animation: none;
}

@keyframes modelProgressPulse {
  0%, 100% {
    opacity: .55;
  }
  50% {
    opacity: 1;
  }
}

.rotation-guide {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18px;
  height: 96px;
  pointer-events: none;
  z-index: 3;
}

.rotation-guide:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 76px;
  border-bottom: 5px solid #666;
  border-left: 4px solid #666;
  border-right: 4px solid #666;
  border-radius: 50%;
}

.rotation-guide span {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #9b9b9b;
  color: white;
  font-weight: 900;
  font-size: 15px;
}

.model-viewer.guide-hidden .rotation-guide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.references-sheet h2 {
  text-align: center;
  font-size: 25px;
  margin: 6px 48px 24px;
}

.reference-item {
  border: 0;
  padding: 0 0 26px;
}

.reference-item summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.reference-item summary::-webkit-details-marker {
  display: none;
}

.reference-item summary span {
  min-width: 0;
}

.reference-item summary strong {
  display: block;
  color: #525456;
  font-size: 16px;
  line-height: 1.15;
}

.reference-item summary em {
  display: block;
  color: #555;
  font-size: 14px;
  line-height: 1.25;
  margin-top: 4px;
}

.reference-item summary:after {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background: url("./assets/images/thankyoupage/down.svg") center / contain no-repeat;
  margin-top: 2px;
}

.reference-item[open] summary:after {
  background-image: url("./assets/images/thankyoupage/up.svg");
}

.reference-item ol {
  margin: 14px 0 0;
  padding-left: 18px;
}

.reference-item li {
  color: #555;
  font-size: 12px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.reference-item li a {
  color: var(--green);
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.genome-sheet-shell {
  max-height: 95svh;
  background: #071638;
  color: #eef3ff;
  border-radius: 22px 22px 0 0;
  padding: 0;
}

.genome-sheet-shell .sheet-content {
  overflow: hidden;
}

.genome-sheet-shell .sheet-handle {
  display: none;
}

.genome-sheet-shell .sheet-close {
  background-color: transparent;
  background-image: url("./assets/images/close-general.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0;
}

.model-sheet-shell .sheet-close {
  background-color: transparent;
  background-image: url("./assets/images/close-general.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0;
}

.model-sheet-shell {
  padding-left: 0;
  padding-right: 0;
}

.model-sheet-content {
  display: flex;
  flex-direction: column;
  /* padding-top: 30px; */
}

.model-sheet-content h2 {
  flex: 0 0 auto;
  margin-top: 0;
  margin-bottom: 0px;
  /* padding: 12px 56px 12px 20px; */
    padding: 20px;
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 3;
}

.genome-sheet-content {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 50% 8%, rgba(79, 101, 160, .32), transparent 34%),
    #071638;
}

.genome-sheet-content h2 {
  padding-top: 40px;
  flex: 0 0 auto;
  color: white;
  font-size: 22px;
  line-height: 1.28;
  /* margin: 8px 54px 20px 0; */
  padding-bottom: 16px;
  /* background: linear-gradient(180deg, #071638 0%, rgba(7, 22, 56, .96) 72%, rgba(7, 22, 56, 0)); */
  position: relative;
  z-index: 2;
}

.genome-scroll-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 10px;
}

.genome-sheet-content h3 {
  color: white;
  font-size: 18px;
  margin: 44px 0 22px;
}

.genome-sheet-content p {
  color: #d8deed;
  font-size: 18px;
  line-height: 1.36;
  margin-bottom: 22px;
}

.chromosome-visual {
  position: relative;
  height: 250px;
  margin-bottom: 34px;
}

.gene-dot,
.circos-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d40bdd;
  box-shadow: 0 0 16px rgba(212, 11, 221, .46);
}

.dot-a {
  left: 36%;
  top: 0;
}

.dot-b {
  right: 34%;
  top: 0;
}

.chromosome-label {
  position: absolute;
  top: 20px;
  color: #d8deed;
  font-size: 18px;
}

.label-a {
  left: 35%;
}

.label-b {
  right: 28%;
}

.chromosome {
  position: absolute;
  top: 58px;
  border: 3px solid rgba(255, 255, 255, .58);
  border-radius: 3px;
  transform: skewX(-8deg);
  overflow: hidden;
}

.chromosome:before,
.chromosome:after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 36%;
  border-bottom: 2px solid rgba(255, 255, 255, .58);
}

.chromosome:before {
  top: 6px;
  background:
    linear-gradient(180deg, transparent 34%, rgba(255, 255, 255, .7) 35% 38%, transparent 39%),
    radial-gradient(ellipse at 45% 90%, #f26bdc 0 48%, transparent 49%);
}

.chromosome:after {
  bottom: 8px;
  background:
    linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, .62) 56% 59%, transparent 60%),
    radial-gradient(ellipse at 52% 20%, #8d22e9 0 24%, transparent 25%);
}

.chromosome-large {
  left: 18%;
  width: 38%;
  height: 160px;
}

.chromosome-small {
  right: 18%;
  width: 18%;
  height: 160px;
}

.circos-plot {
  position: relative;
  width: min(82vw, 340px);
  aspect-ratio: 1;
  margin: 0 auto 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 29%, rgba(255, 255, 255, .08) 30% 31%, transparent 32%),
    radial-gradient(circle, transparent 0 42%, rgba(255, 255, 255, .18) 43% 46%, transparent 47%),
    radial-gradient(circle, transparent 0 56%, rgba(255, 255, 255, .22) 57% 60%, transparent 61%),
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, .55) 0 3deg, rgba(255, 255, 255, .08) 3deg 8deg);
  border: 3px solid rgba(255, 255, 255, .32);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, .12);
}

.circos-plot.image-visual {
  border: 0;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  width: 100%;
  aspect-ratio: auto;
}

.circos-track {
  width: 100%;
}

.circos-track:not(.slick-initialized) {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.circos-track:not(.slick-initialized)::-webkit-scrollbar {
  display: none;
}

.circos-slide {
  width: 100%;
  flex: 0 0 100%;
  scroll-snap-align: center;
}

.circos-slide-image {
  width: min(82vw, 340px);
  aspect-ratio: 1;
  margin: 0 auto 10px;
}

.genome-dots-slot {
  min-height: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.circos-slide-copy {
  text-align: left;
}

.circos-slide-copy h3 {
  margin-top: 18px;
}

.circos-slide-copy p {
  margin-bottom: 18px;
}

.circos-track .slick-list,
.circos-track .slick-track,
.circos-track .slick-slide,
.circos-track .slick-slide > div {
  height: auto;
}

.circos-track.slick-initialized .slick-slide {
  opacity: 0;
  transition: opacity .22s ease-in-out;
}

.circos-track.slick-initialized .slick-slide.slick-active {
  opacity: 1;
}

.circos-plot:before {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .14);
  background: repeating-conic-gradient(from 12deg, rgba(255, 255, 255, .18) 0 1deg, transparent 1deg 12deg);
}

.circos-dot.dot-1 {
  left: 48%;
  top: -5%;
}

.circos-dot.dot-2 {
  right: 4%;
  top: 20%;
}

.circos-dot.dot-3 {
  right: -3%;
  top: 50%;
}

.circos-dot.dot-4 {
  right: 12%;
  bottom: 8%;
}

.circos-dot.dot-5 {
  left: 50%;
  bottom: -5%;
}

.circos-dot.dot-6 {
  left: 12%;
  bottom: 8%;
}

.circos-dot.dot-7 {
  left: -3%;
  top: 48%;
}

.circos-dot.dot-8 {
  left: 8%;
  top: 22%;
}

.genome-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0;
  list-style: none;
  padding: 0;
}

.genome-dots li,
.genome-dots button {
  display: grid;
  place-items: center;
}

.genome-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  font-size: 0;
  opacity: .55;
  transition: opacity .18s ease, background-color .18s ease, transform .18s ease;
}

.genome-dots button.active {
  background: white;
  opacity: 1;
  transform: scale(1.08);
}

.back-top {
  display: block;
  margin: 48px auto 8px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .58);
  font-weight: 800;
  font-size: 13px;
}

.desktop-prompt {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  text-align: center;
  padding: 32px;
}

.desktop-prompt[hidden] {
  display: none !important;
}

.local-dev .desktop-prompt {
  display: none !important;
}

.desktop-prompt p,
.desktop-prompt h1 {
  color: white;
}

@media (max-width: 759px) {
  .topbar,
  .prologue-caption,
  .prologue-transcript,
  .prologue-status,
  .sound-prompt,
  .video-control-button,
  .route-notice {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .sheet-backdrop {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .feature-card,
  .reward-card,
  .garden-photo-card,
  .discovery-card {
    box-shadow: 0 8px 18px rgba(23, 32, 28, .12);
  }
}

@media (min-width: 1025px) {
  .app-shell {
    display: none;
  }

  .local-dev .app-shell {
    display: block;
  }
}

/***IPAD***/
@media (min-width: 760px) and (max-width: 1024px) {
  html,
  body {
    width: 100%;
  }

  .app-shell h1,
  .app-shell h2,
  .app-shell h3,
  .app-shell h4,
  .app-shell h5,
  .app-shell h6,
  .app-shell p,
  .app-shell li,
  .app-shell a,
  .app-shell button,
  .app-shell label,
  .app-shell input,
  .app-shell textarea,
  .app-shell select,
  .app-shell strong,
  .app-shell small {
    font-size: 1.8rem;
  }
  .app-shell h1 {
    font-size: 3rem;
  }
  .prof-teh-video-title{
    font-size: 2rem;
  }
  
  .prof-teh-video-subtitle{
        font-size: 1.5rem;
  }
  .prologue-transcript{
    font-size: 1.5rem;
      bottom: calc(190px + env(safe-area-inset-top));
    left: 40px;
    right: 40px;
  }


  .prologue-caption{
    padding: 40px;
    padding-bottom: 100px;
  }

  .video-controls {
    left: 40px;
    right: 40px;
  }

  .route-notice{
    width: 500px;
  }

  .route-explore{
    font-size: 1.5rem;
  }

  .station-intro-copy h1{
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1.8rem;
  }

  .station-intro-title h2{
    font-size: 1.8rem;
  }

  .app-shell {
    width: 100%;
    max-width: 100%;
  }

  .route-plant span,
  .route-plant span img {
    width: 80px;
    height: 80px;
  }

  .station-intro-page{
    background-position: center center;
  }

  .station-intro-page::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 0;
  }

  .station-intro-inner {
    position: relative;
    z-index: 1;
  }

  .station-intro-inner .button-row{
    z-index: 2;
  }

  .station-intro-copy p{
    max-width: 100%;
  }
  .loop-carousel .feature-card{
   height: 800px;
    max-height: 800px;
  }
  .station-actions{
    padding: 40px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .three-d-cta {
    min-height: 150px;
  }
  .three-d-cta span {
    max-width: 500px;
  }
  .primary, .secondary {
    font-size: 2rem;
    min-height: 100px!important;
  }
  .selected-route-subtitle{
    max-width: 800px;
  }
  .selected-route-note{
    max-width: 90%;
  }
  .sheet{
    max-width: 100%;
  }
  .cycle-item p {
    font-size: 1.5rem;
  }
  .plant-sheet-hero h2{
    font-size: 1.8rem;
  }
  .sheet-copy, .sheet-copy p, .sheet-copy li{
    font-size: 1.8rem;
  }
  .genome-sheet-content h2{
    font-size: 1.8rem;
  }
  .genome-sheet-content h3{
    font-size: 1.8rem;
  }
  .genome-sheet-content p{
    font-size: 1.8rem;
  }
  .chromosome-visual{
    height: 500px;
  }
  .circos-slide-image{
    width: 50%;
  }
  .plant-sheet-content .plant-sheet-hero{
    min-height: 500px;
    max-height: 500px;
  }
  .reward-card .reward-trail-time{
    font-size: 4rem;
  }
  .final-reward-time-block strong{
    font-size: 4rem;
  }
  .reward-trail-time-block, .final-reward-time-block{
    bottom: calc(8% + 22px);
  }
  .final-camera h1{
    max-width: 800px;
  }
  .camera-button{
    width: 150px;
    height: 150px;
  }
  .final-actions .tap-share-button{
    font-size: 1.8rem;
  }
 .pad {
    padding: 40px 40px 40px calc(40px + env(safe-area-inset-bottom));
  }
  .final-camera-inner {
    padding-top: calc(100px + env(safe-area-inset-top));
}
.final-retake-link{
  top: 40px;
  left: 40px;
}

.references-sheet h2,
.references-sheet p,
.references-sheet li,
.references-sheet a,
.references-sheet button,
.references-sheet summary,
.references-sheet summary strong,
.references-sheet summary em {
  font-size: 1.5rem;
}

.references-sheet .reference-item summary:after {
  flex-basis: 40px;
  width: 40px;
  height: 40px;
}
.icon-button{
  width: 84px;
  height: 84px;
}
.feature-carousel {
  padding: 32px 0 56px;
}
}
