:root {
  --green-950: #092d20;
  --green-900: #123b2b;
  --green-800: #234c37;
  --green-700: #315f46;
  --sage: #6e8271;
  --sage-light: #dfe7dd;
  --cream: #fbf8f2;
  --cream-2: #f5f1e9;
  --line: #e5dfd4;
  --gold: #e8aa35;
  --ink: #12271f;
  --muted: #536158;
  --shadow: 0 22px 60px rgba(24, 36, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 170, 53, 0.08), transparent 20rem),
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 48%, #fffaf2 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 3rem, 76rem);
  margin: 0 auto;
  padding: 2rem 0 1.1rem;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  color: var(--green-950);
  /* font-family: Georgia, "Times New Roman", serif; */
  font-family: system-ui;
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 0.9;
}

.brand-leaf,
.brand-leaf::before {
  display: block;
  width: 0.55rem;
  height: 1.25rem;
  margin-left: 0.1rem;
  border-radius: 100% 0 100% 0;
  background: var(--sage);
  transform: rotate(30deg);
  content: "";
}

.brand-leaf::before {
  margin: 0.8rem 0 0 0.2rem;
  width: 0.38rem;
  height: 0.85rem;
  background: var(--gold);
}

.language-switcher {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.28rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0.5rem 1.8rem rgba(35, 76, 55, 0.08);
  touch-action: manipulation;
}

.lang-button {
  min-width: 2.55rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  color: var(--green-800);
  background: transparent;
  font: 700 0.76rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  cursor: pointer;
}

.lang-button.is-active {
  color: #fff;
  background: var(--green-800);
}

.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.68rem;
  padding: 0 1.05rem;
  border: 1px solid rgba(49, 95, 70, 0.18);
  border-radius: 999px;
  color: #fff;
  background: var(--green-800);
  box-shadow: 0 0.5rem 1.8rem rgba(35, 76, 55, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.app-button::after {
  margin-left: 0.45rem;
  content: "→";
}

.section {
  width: min(100% - 3rem, 76rem);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(30rem, 1fr);
  align-items: self-start;
  gap: 1rem;
  min-height: 34rem;
  padding: 1rem 0 2.25rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 31rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0.5rem 1.5rem rgba(35, 76, 55, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "♡";
  color: var(--gold);
}

h1,
h2 {
  margin: 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  position: relative;
  max-width: 26rem;
  font-size: clamp(3.4rem, 8vw, 5rem);
  line-height: 0.98;
}

.hero-lede {
  margin: 1.35rem 0 0;
  color: var(--green-950);
  font-size: clamp(1.3rem, 2.3vw, 1.95rem);
  line-height: 1.35;
}

.hero-body {
  max-width: 25rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.price-note {
  max-width: 25rem;
  margin: 1rem 0 0;
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  box-shadow: 0 0.8rem 1.8rem rgba(35, 76, 55, 0.22);
}

.button.primary::after {
  margin-left: 0.7rem;
  content: "→";
}

.button.secondary {
  border: 1px solid #b8c4b8;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.54);
}

.button.secondary::after {
  margin-left: 0.65rem;
  content: "▶";
  font-size: 0.75rem;
}

.button.small {
  min-height: 3rem;
  margin-top: 1rem;
  font-size: 0.92rem;
}

.availability {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.device-icons {
  display: inline-flex;
  align-items: end;
  gap: 0.85rem;
}

.device-icons span {
  position: relative;
  display: block;
  border: 2px solid var(--green-700);
  background: transparent;
}

.device-icons span:first-child {
  width: 1.65rem;
  height: 1.05rem;
  margin-bottom: 0.28rem;
  border-radius: 0.16rem;
}

.device-icons span:first-child::before {
  position: absolute;
  left: 50%;
  bottom: -0.38rem;
  width: 0.58rem;
  border-top: 2px solid var(--green-700);
  transform: translateX(-50%);
  content: "";
}

.device-icons span:first-child::after {
  position: absolute;
  left: 50%;
  bottom: -0.28rem;
  height: 0.28rem;
  border-left: 2px solid var(--green-700);
  transform: translateX(-50%);
  content: "";
}

.device-icons span:nth-child(2) {
  width: 1.05rem;
  height: 1.45rem;
  border-radius: 0.16rem;
}

.device-icons span:nth-child(3) {
  width: 0.72rem;
  height: 1.28rem;
  border-radius: 0.22rem;
}

.hero-media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  padding: 0.72rem;
  border: 1px solid rgba(229, 223, 212, 0.92);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(223, 231, 221, 0.54)),
    radial-gradient(circle at 12% 12%, rgba(232, 170, 53, 0.1), transparent 16rem);
  box-shadow: 0 1.4rem 3.4rem rgba(35, 76, 55, 0.12);
  transform: translateX(2rem);

  margin-top: 3rem;
}

.hero-image {
  display: block;
  width: min(54vw, 44rem);
  max-width: 100%;
  height: auto;
  border-radius: 0.72rem;
  box-shadow: 0 0.9rem 1.7rem rgba(60, 82, 130, 0.12);
}

.device-crop {
  background-image: url("img/reference.png");
  background-repeat: no-repeat;
  background-size: 864px 1821px;
}

.features {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.75rem 0 2.6rem;
}

.feature-card {
  position: relative;
  min-height: 12.2rem;
  padding: 1.45rem 1.25rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0.8rem 2.2rem rgba(35, 76, 55, 0.06);
  text-align: center;
}

.feature-card h2 {
  margin-top: 0.9rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.feature-card p {
  min-height: 3.2rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.capabilities {
  padding: 2.7rem 0 3.25rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.capability-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.9rem;
  min-height: 10.6rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 0.8rem 2rem rgba(35, 76, 55, 0.055);
}

.capability-grid .line-icon {
  grid-row: span 2;
  margin: 0;
}

.capability-grid h3 {
  margin: 0.1rem 0 0;
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.25;
}

.capability-grid p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.badge {
  position: absolute;
  top: 1.65rem;
  right: 1rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.line-icon,
.benefit-icon {
  display: block;
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  margin: 0 auto;
  color: var(--green-800);
}

.line-icon::before,
.line-icon::after,
.benefit-icon::before,
.benefit-icon::after {
  position: absolute;
  content: "";
}

.calendar {
  border: 2px solid currentColor;
  border-radius: 0.3rem;
}

.calendar::before {
  top: 0.75rem;
  left: 0;
  width: 100%;
  border-top: 2px solid currentColor;
}

.calendar::after {
  top: -0.3rem;
  left: 0.65rem;
  width: 1.1rem;
  height: 0.6rem;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.people::before,
.people::after {
  border: 2px solid currentColor;
  border-radius: 999px 999px 0 0;
}

.people::before {
  inset: 1.4rem 0.15rem 0.2rem;
  border-bottom: 0;
}

.people::after {
  top: 0.3rem;
  left: 0.75rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
}

.chat {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.chat::after {
  right: 0.25rem;
  bottom: 0.05rem;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(32deg);
}

.bars::before {
  inset: 0.35rem 0.15rem;
  border-left: 0.45rem solid currentColor;
  border-right: 0.45rem solid currentColor;
  box-shadow: 1.05rem 0 0 currentColor;
}

.doc {
  border: 2px solid currentColor;
  border-radius: 0.22rem;
}

.doc::before {
  top: -0.1rem;
  right: -0.1rem;
  width: 0.8rem;
  height: 0.8rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: var(--cream);
}

.doc::after {
  top: 1.1rem;
  left: 0.55rem;
  width: 1.15rem;
  border-top: 2px solid currentColor;
  box-shadow: 0 0.55rem 0 currentColor, 0 1.1rem 0 currentColor;
}

.evaluation {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(28rem, 1fr);
  gap: 2rem;
  padding: 3rem 2.4rem;
  border-radius: 0.8rem;
  background:
    linear-gradient(90deg, rgba(245, 241, 233, 0.92), rgba(255, 255, 255, 0.7)),
    radial-gradient(circle at 100% 0%, rgba(232, 170, 53, 0.09), transparent 20rem);
  box-shadow: inset 0 0 0 1px rgba(229, 223, 212, 0.6);
}

.evaluation h2 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
}

.script-line {
  position: relative;
  margin: 0.35rem 0 1.35rem;
  color: var(--sage);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
  color: var(--green-900);
}

.check-list li {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.55rem;
  font-size: 0.98rem;
  line-height: 1.45;
}

.check-list li::before {
  color: var(--green-700);
  content: "✓";
}

.tablet-shot {
  min-width: 0;
  width: 100%;
  max-width: 42.5rem;
  margin-left: auto;
  aspect-ratio: 1.5;
  border-radius: 0.72rem;
  background-color: #fcf8f2;
  background-image: url("img/evaluation.jpg");
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
}

.benefits {
  position: relative;
  margin-top: 2.6rem;
  padding: 1.9rem 2rem 2.1rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 0.9rem 2.5rem rgba(35, 76, 55, 0.06);
  text-align: center;
}

.benefits h2,
.testimonials h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.55rem;
}

.benefit-grid > div {
  min-height: 6rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--line);
}

.benefit-grid > div:last-child {
  border-right: 0;
}

.benefit-grid p {
  margin: 0.6rem 0 0;
  color: var(--green-900);
  line-height: 1.35;
}

.clock {
  border: 2px solid currentColor;
  border-radius: 999px;
}

.clock::before {
  top: 0.55rem;
  left: 1.25rem;
  height: 0.95rem;
  border-left: 2px solid currentColor;
}

.clock::after {
  top: 1.35rem;
  left: 1.25rem;
  width: 0.9rem;
  border-top: 2px solid currentColor;
  transform: rotate(28deg);
  transform-origin: left center;
}

.group::before {
  inset: 1.45rem 0.2rem 0.2rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.group::after {
  top: 0.4rem;
  left: 0.78rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 1.25rem 0 0 -0.05rem var(--cream), 1.25rem 0 0 0.08rem currentColor;
}

.heart::before {
  top: 0.45rem;
  left: 0.45rem;
  width: 1.55rem;
  height: 1.55rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.sprout::before {
  left: 1.25rem;
  bottom: 0.25rem;
  height: 2.1rem;
  border-left: 2px solid currentColor;
}

.sprout::after {
  top: 0.35rem;
  left: 0.55rem;
  width: 1rem;
  height: 1.35rem;
  border: 2px solid currentColor;
  border-radius: 100% 0 100% 0;
  box-shadow: 1.25rem 0.55rem 0 -0.08rem var(--cream), 1.25rem 0.55rem 0 0.05rem currentColor;
}

.testimonials {
  position: relative;
  padding: 2.3rem 0 3rem;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
  text-align: left;
}

figure {
  margin: 0;
  min-height: 11.5rem;
  padding: 1.55rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.58);
}

blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}

blockquote::before {
  display: block;
  color: var(--green-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 0.8;
  content: "“";
}

figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

figcaption strong,
figcaption small {
  display: block;
}

figcaption small {
  margin-top: 0.15rem;
  color: var(--muted);
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #bb8552, #f2d6b5);
  font-weight: 800;
}

.faq {
  padding: 2.4rem 0 3.2rem;
}

.section-heading {
  max-width: 44rem;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 55rem;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 0.7rem 1.8rem rgba(35, 76, 55, 0.05);
}

.faq-list summary {
  position: relative;
  padding: 1.1rem 3rem 1.1rem 1.2rem;
  color: var(--green-950);
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  color: var(--green-800);
  font-size: 1.35rem;
  line-height: 1;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}

.bottom-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 42rem);
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 1.35rem;
  width: 100%;
  margin-top: 0.5rem;
  padding: 5.1rem max(2rem, calc((100vw - 76rem) / 2)) 2.4rem;
  color: #fff;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.1), transparent 18rem),
    linear-gradient(135deg, #315f46 0%, #173f2e 100%);
  overflow: hidden;
  text-align: center;
}

.bottom-cta::before {
  position: absolute;
  top: -0.1rem;
  left: 0;
  width: 100%;
  height: 5.4rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fbf8f2' d='M0 0H1440V46C1267 83 1095 93 922 78C760 64 599 25 438 28C285 30 139 67 0 54V0Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.gift,
.cta-copy p {
  margin: 0;
}

.gift {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.cta-copy h2 {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 100;
  line-height: 1.08;
}

.cta-copy p:last-child {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  padding: 0.5rem;
}

.cta-price {
  max-width: 36rem;
  margin: 0.95rem auto 0;
  font-weight: 700;
  line-height: 1.55;
}

.url-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 13rem;
  min-height: 3.5rem;
  padding: 0.35rem 1.6rem 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--green-900);
  background: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.url-pill span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: #fff;
  background: var(--green-700);
}

.footer-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.4rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.leaf-spray {
  position: absolute;
  pointer-events: none;
  background: url("img/leaf-spray.png") center / contain no-repeat;
}

.pen-mark {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
}

.pen-mark::after {
  position: absolute;
  z-index: -1;
  left: -0.08em;
  right: -0.08em;
  bottom: -0.1em;
  height: 0.18em;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 16' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.5 C35 8.5 82 8 117 9.5' fill='none' stroke='%23e8aa35' stroke-width='8' stroke-linecap='round' opacity='.9'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  content: "";
  transform: rotate(-0.35deg);
  transform-origin: center;
}

.script-line .pen-mark::after,
.cta-copy .pen-mark::after {
  bottom: -0.02em;
}

.leaf-left {
  top: 3.2rem;
  left: calc((76rem - 100vw) / 2 - 3.4rem);
  width: 10rem;
  height: 21.5rem;
  opacity: 0.82;
  transform: rotate(10deg);
}

.footer-leaf {
  left: -3.8rem;
  bottom: 1.2rem;
  width: 9rem;
  height: 18rem;
  opacity: 0.24;
  filter: brightness(1.18);
}

.leaf-spray::before,
.leaf-spray span {
  display: none;
}

.leaf-feature {
  right: calc((76rem - 100vw) / 2 - 4.3rem);
  top: 4.6rem;
  width: 10rem;
  height: 21.5rem;
  opacity: 0.66;
  transform: scaleX(-1) rotate(4deg);
}

.leaf-benefits {
  left: calc((76rem - 100vw) / 2 - 3.8rem);
  bottom: -2rem;
  width: 10rem;
  height: 21.5rem;
  opacity: 0.58;
  transform: rotate(30deg);
}

@media (max-width: 98.125rem) {
  .leaf-left {
    display: none;
  }
}

.line-icon,
.benefit-icon {
  display: grid;
  place-items: center;
  width: 3.05rem;
  height: 3.05rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(223, 231, 221, 0.64), rgba(255, 255, 255, 0.5));
  box-shadow: inset 0 0 0 1px rgba(49, 95, 70, 0.1);
}

.line-icon::before,
.benefit-icon::before {
  position: static;
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  background: currentColor;
  border: 0;
  box-shadow: none;
  content: "";
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.line-icon::after,
.benefit-icon::after {
  content: none;
}

.calendar {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v3h6V2h2v3h2.5A2.5 2.5 0 0 1 22 7.5v11A2.5 2.5 0 0 1 19.5 21h-15A2.5 2.5 0 0 1 2 18.5v-11A2.5 2.5 0 0 1 4.5 5H7V2Zm12.5 8h-15v8.5h15V10ZM6.5 13h2v2h-2v-2Zm4.5 0h2v2h-2v-2Zm4.5 0h2v2h-2v-2Z'/%3E%3C/svg%3E");
}

.people,
.group {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0 2c4.2 0 7 2.3 7 5.2V21H2v-2.8C2 15.3 4.8 13 9 13Zm7.4-.2a3.2 3.2 0 1 1 .2-6.4 3.2 3.2 0 0 1-.2 6.4ZM17 14c3 0 5 1.6 5 3.8V21h-4v-2.8c0-1.6-.7-3.1-2-4.2h1Z'/%3E%3C/svg%3E");
}

.chat {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3C6.5 3 2.5 6.4 2.5 11c0 2.6 1.3 4.8 3.5 6.3l-.7 3.4 4-1.8c.9.2 1.8.3 2.7.3 5.5 0 9.5-3.4 9.5-8.2S17.5 3 12 3Zm-4 7h8v2H8v-2Zm0 3.5h5.7v2H8v-2Z'/%3E%3C/svg%3E");
}

.bars {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 13h4v8H4v-8Zm6-6h4v14h-4V7Zm6-4h4v18h-4V3Z'/%3E%3C/svg%3E");
}

.doc {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 2h9l5 5v15H5V2Zm8 1.8V8h4.2L13 3.8ZM8 11v2h8v-2H8Zm0 4v2h8v-2H8Z'/%3E%3C/svg%3E");
}

.loop {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.2 6.2A7.7 7.7 0 0 1 20 12h-2.2a5.5 5.5 0 0 0-9.1-4.1L11 10.2H4V3.3l3.2 2.9ZM4 12h2.2a5.5 5.5 0 0 0 9.1 4.1L13 13.8h7v6.9l-3.2-2.9A7.7 7.7 0 0 1 4 12Z'/%3E%3C/svg%3E");
}

.event {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v3h6V2h2v3h2.5A2.5 2.5 0 0 1 22 7.5v11A2.5 2.5 0 0 1 19.5 21h-15A2.5 2.5 0 0 1 2 18.5v-11A2.5 2.5 0 0 1 4.5 5H7V2Zm12.5 8h-15v8.5h15V10Zm-7.5 1.7 1.4 2.7 3 .4-2.2 2.1.6 3-2.8-1.4-2.7 1.4.5-3-2.2-2.1 3-.4 1.4-2.7Z'/%3E%3C/svg%3E");
}

.storage {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2c5 0 9 1.5 9 3.5v13c0 2-4 3.5-9 3.5s-9-1.5-9-3.5v-13C3 3.5 7 2 12 2Zm0 2C7.9 4 5.4 5 5 5.5 5.4 6 7.9 7 12 7s6.6-1 7-1.5C18.6 5 16.1 4 12 4ZM5 8.1v3.4C5.7 12.1 8.2 13 12 13s6.3-.9 7-1.5V8.1C17.3 8.7 14.8 9 12 9s-5.3-.3-7-1Zm0 6v4.4c.4.5 2.9 1.5 7 1.5s6.6-1 7-1.5v-4.4c-1.7.6-4.2.9-7 .9s-5.3-.3-7-.9Z'/%3E%3C/svg%3E");
}

.clock {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm1 5h-2v6l5 3 1-1.7-4-2.3V7Z'/%3E%3C/svg%3E");
}

.heart {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s-8.5-5.1-8.5-11.2A5 5 0 0 1 12 6.2a5 5 0 0 1 8.5 3.6C20.5 15.9 12 21 12 21Z'/%3E%3C/svg%3E");
}

.sprout {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 21v-7.6C7.8 13 5.2 10.7 4 7.1 7.7 6.4 10.7 7.6 12 10c1.2-3.7 4-5.9 8.5-6.2-.2 4.8-2.9 8.1-7.5 9V21h-2Z'/%3E%3C/svg%3E");
}

@media (max-width: 76rem) {
  .leaf-benefits {
    left: -5.8rem;
  }

  .leaf-left {
    display: none;
  }

  .leaf-feature {
    right: -5.8rem;
  }
}

@media (max-width: 72rem) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .hero-copy {
    max-width: 42rem;
    margin: 0 auto;
  }

  h1,
  .hero-body {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .availability {
    justify-content: center;
  }

  .hero-image {
    width: min(100%, 47rem);
  }

  .hero-media {
    width: min(100%, 48.5rem);
    margin: 1rem auto 0;
    transform: none;
  }

  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }



  .tablet-shot {
    margin: 0 auto;
  }
}

@media (max-width: 54rem) {
  .section,
  .topbar {
    width: min(100% - 2rem, 76rem);
  }

  .topbar {
    padding-top: 1.25rem;
  }

  .topbar-actions {
    gap: 0.5rem;
  }

  .language-switcher {
    gap: 0.1rem;
    padding: 0.2rem;
  }

  .lang-button {
    min-width: 2rem;
    height: 1.72rem;
    font-size: 0.7rem;
  }

  .app-button {
    display: none;
  }

  .hero {
    padding-top: 0.5rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .price-note {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    width: 100%;
  }

  .hero-media {
    width: min(100%, 45rem);
    padding: 0.48rem;
    border-radius: 0.78rem;
  }

  .features,
  .capability-grid,
  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-card p {
    min-height: 0;
  }

  .evaluation {
    width: min(100% - 1rem, 76rem);
    padding: 2rem 1rem;
  }

  .tablet-shot {
    aspect-ratio: 1.5;
    background-position: center;
  }

  .benefit-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid > div:last-child {
    border-bottom: 0;
  }

  .bottom-cta {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 4.5rem 1.25rem 2rem;
    text-align: center;
  }

  .url-pill {
    justify-self: center;
  }

  .leaf-left,
  .leaf-feature,
  .leaf-benefits {
    display: none;
  }
}

@media (max-width: 32rem) {
  .topbar {
    align-items: center;
    flex-direction: row;
    gap: 0.65rem;
  }

  .topbar-actions {
    flex: 0 1 auto;
    align-self: center;
  }

  .language-switcher {
    align-self: center;
    justify-content: center;
  }

  .lang-button {
    flex: 0 0 auto;
    min-width: 1.7rem;
    height: 1.55rem;
    font-size: 0.64rem;
  }

  .brand {
    font-size: 2.25rem;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-lede {
    font-size: 1.25rem;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.7rem;
  }
}
