.homepage_hero_wrapper {
  padding:30px 0;
}

@media (min-width:1000px) {
 .homepage_hero_wrapper {
    padding:80px 0;
  } 
}

.homepage_hero {
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  gap:50px;
  margin-bottom:60px;
}

.homepage_hero h1 {
  margin-bottom:14px;
  text-wrap:balance;
  line-height:1;
  font-family: "Ivar";
  font-weight:400;
  font-size:42px;
  letter-spacing:-0.9px;
}

.homepage_hero .intro {
  max-width:600px;
}

.homepage_hero .intro p {
  font-size: 20px;
  line-height:1.3;
  color: #666;
  margin-bottom:0px;
  text-wrap:pretty;
  font-family: "Inter", -apple-system, sans-serif;
  letter-spacing:-0.2px;
  margin-bottom:30px;
}

.homepage_hero .intro span.emphasis {
  color:var(--soft-black);
}

.homepage_buttons {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  padding:0 20px;
}

.homepage_hero a.signup_button {
  background-color:var(--forest);
  border:1px solid var(--forest);
  color:var(--gentle-white);
  text-decoration:none;
  padding:16px 16px;
  font-family:"Matter SemiMono", monospace;
  font-size:16px;
  border-radius:11px;
  display:inline-flex;
  align-items:center;
  gap:5px;
  width:100%;
  white-space:nowrap;
}

.homepage_hero a.demo_button {
  border:1px solid var(--forest);
  color:var(--forest);
  text-decoration:none;
  padding:16px 16px;
  font-family:"Matter SemiMono", monospace;
  font-size:16px;
  border-radius:11px;
  display:inline-flex;
  align-items:center;
  gap:5px;
  width:100%;
}

@media (min-width:900px) {
  .homepage_buttons {
    flex-direction:row;
    gap:8px;
    padding:0;
  }
}

.homepage_hero .screenshot {
  background-color:var(--soft-pink);
  border-radius:16px;
  max-width:600px;
  overflow:hidden;
}

@media (min-width:1000px) {
  .homepage_hero h1 {
    font-size:45px;
    line-height:0.9;
    margin-bottom:22px;
  }
  .homepage_hero .intro p {
    font-size:22px;
  }
  .homepage_hero {
    flex-direction:row;
  }
  .homepage_hero .intro {
    width:75%;
  }
  .homepage_hero_screenshot {
    width:55%;
  }
}

@media (min-width:1300px) {
  .homepage_hero {
    gap:60px;
  }
  .homepage_hero h1 {
    font-size:58px;
    line-height:1;
    margin-bottom:27px;
  }
  .homepage_hero .intro {
    width:45%;
  }
  .homepage_hero_screenshot {
    width:55%;
  }
}

.homepage_hero .screenshot .example_alert_stack {
  margin-top:27px;
}

@media (min-width: 1000px) {
  .homepage_hero .screenshot .example_alert_stack {
    margin-top:81px;
  }
}

.example_alert_stack .stack_1, .example_alert_stack .stack_2 {
  background-color:var(--paper);
  border:1px solid #efc8c9;
  border-bottom:0;
  box-shadow:var(--box-shadow-combined);
  height:20px;
  width:89%;
  position:relative;
  margin-left:auto;
  margin-right:auto;
  border-radius:8px 8px 0 0;
}

.example_alert_stack .stack_1 {
  width:84%;
  transform:translateY(20px);
}

.example_alert_stack .stack_2 {
  transform:translateY(10px);
}

@media (min-width: 900px) {
  .example_alert_stack .stack_1 {
    width:81%;
  }
  .example_alert_stack .stack_2 {
    width:85%;
  }
}

:root {
  --example-alert-padding: 24px;
}

.homepage_hero .example_alert {
  background-color:var(--paper);
  width:95%;
  position:relative;
  margin-left:auto;
  margin-right:auto;
  border-radius:12px 12px 0 0;
  box-shadow:var(--box-shadow-combined);
  border:1px solid #efc8c9;
  border-bottom:0;
}

@media (min-width:900px) {
  .homepage_hero .example_alert {
    width:89%;
  }
}

.homepage_hero .example_alert .example_alert_title {
  font-family: "Ivar";
  font-weight:700;
  display:flex;
  flex-direction:row;
  gap:6px;
  align-items:baseline;
  font-size:18px;
  padding-left:var(--example-alert-padding);
  padding-right:var(--example-alert-padding);
  padding-top:18px;
  padding-bottom:8px;
}

.homepage_hero .flashing_bulb {
  min-width:11px;
  width:11px;
  height:11px;
  background-color:var(--alert-red);
  border-radius:50%;
  animation: fadeInOut 2s infinite ease-in-out;
  animation-delay: 2s;
  display:none;
}

@media (min-width:900px) {
  .homepage_hero .flashing_bulb {
    display:block;
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.homepage_hero .example_alert .example_alert_description {
  font-family: "Inter";
  font-size:15px;
  color:#666;
  padding-left:var(--example-alert-padding);
  padding-right:var(--example-alert-padding);
  padding-bottom:18px;
}

.example_alert_sources {
  font-family: "Matter SemiMono", monospace;
  font-size:14px;
  color:#666;
  padding-left:var(--example-alert-padding);
  padding-right:var(--example-alert-padding);
  padding-bottom:18px;
  display:flex;
  align-items:center;
  gap:4px;
  border-bottom:1px solid var(--gridline);
}

.example_sources {
  display:flex;
  align-items:center;
  gap:2px;
}

.example_sources img.source_favicon {
  padding:3px;
  width:16px;
  height:16px;
  margin-right:-8px;
}

.example_meta_bar {
  font-family:"Matter SemiMono", -apple-system, system-ui;
  font-size:12px;
  display:flex;
  gap:7px;
  align-items:center;
  justify-content: space-between;
  padding:11px var(--example-alert-padding);
  border-bottom:1px solid var(--gridline);
  text-wrap:nowrap;
  overflow-x:scroll;
}

.example_meta_bar .example_priority {
  display:flex;
  align-items:center;
  gap:4px;
  color:var(--alert-red);
}

svg.example_alert_icon {
  width:16px;
  height:auto;
}

.example_meta_bar span.department {
  border:1px solid var(--gridline);
  background-color:#fff;
  color:#777070;
  display:inline-flex;
  align-items: center;
  padding:5px 10px;
  border-radius:16px;
  box-shadow:0 0 4px -2px #7b777775;
}

.example_gap {
  padding:9px var(--example-alert-padding);
}

.how_it_works_wrapper {
  padding:50px 0;
  background:url("/noise.png"), #ffe1e1;
  border-top:1px solid #f4d0d0;
  border-bottom:1px solid #f4d0d0;
}

@media (min-width:900px) {
  .how_it_works_wrapper {
    padding:80px 0;
  }
}

.how_it_works {
  display:flex;
  flex-direction:column;
  justify-content: space-between;
  gap:18px;
}

.how_it_works_block {
  border:1px solid #ebcbcd;
  background-color:#fdeeee;
  box-shadow:var(--box-shadow-combined);
  border-radius:10px;
  padding:22px;
}

svg.homepage_arrow {
  min-width:50px;
  height:auto;
  stroke:var(--soft-black);
  align-self:center;
  transform:rotate(90deg);
  transition: transform 0.2s;
}

.how_it_works_block .icon {
  width:30px;
  height:30px;
  background-color:#ffe1e1;
  border:1px solid #f6d5d5;
  display:flex;
  justify-content: center;
  border-radius:4px;
  margin-bottom:14px;
}

.how_it_works_block svg.how_it_works_icon {
  width:20px;
  height:auto;
  stroke:#fa7272;
}

@media (min-width: 900px) {
  .how_it_works {
    flex-direction:row;
    align-items:stretch;
  }
  .how_it_works_block {
    width:100%;
  }
  svg.homepage_arrow {
    transform:rotate(0deg);
  }
}

.how_it_works_block h3 {
  font-family: "Inter", -apple-system, sans-serif;
  font-weight:700;
  font-size:19px;
  margin-bottom:6px;
  letter-spacing:-0.2px;
  text-wrap:pretty;
}

.how_it_works_block p.explanation {
  color:#666;
  font-family: "Inter", -apple-system, sans-serif;
  font-weight:400;
  margin-bottom:0;
  text-wrap:pretty;
}

span.underlined {
  text-decoration:underline;
}

.form-group.none {
  display: none; 
}

.founder_letter_container {
  padding:50px 0;
}

@media (min-width:900px) {
  .founder_letter_container {
    padding:80px 0;
  }
}

.founder_letter_wrapper {
  display:flex;
  flex-direction:row;
  overflow:hidden;
  background-color:var(--paper);
  border:1px solid var(--gridline);
  box-shadow:var(--box-shadow-combined);
  border-radius:10px;
  align-items:stretch;
}

.founder_letter {
  padding:40px;
  max-width:540px;
  flex:1;
}

.founder_letter h4 {
  font-family: "Inter", -apple-system, sans-serif;
  font-weight:700;
  letter-spacing:-0.4px;
  font-size:27px;
  margin-bottom:12px;
  text-wrap:pretty;
}

.founder_letter p {
  margin-bottom:24px;
  font-size:20px;
}

.founder_letter_wrapper {
  display:flex;
}

.founder_letter_background {
  display:none;
  flex:1;
  background-image: url("/paint_block_1.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

@media (min-width:900px) {
  .founder_letter_background {
    display:block;
  }
}

.waitlist_wrapper {
  padding:60px 0;
  background:url("/noise.png"), #ffe1e1;
  border-top:1px solid #f4d0d0;
  border-bottom:1px solid #f4d0d0;
}

.feature_wrapper {
  padding:40px 0;
}

.feature_wrapper:nth-child(odd) {
  background-color:#fff0ea;
}

@media (min-width: 900px) {
  .feature_wrapper {
    padding:80px 0;
  }
}

.analysis_copy {
  max-width:600px;
  margin-bottom:38px;
}

.updated_homepage .analysis_copy {
  max-width:850px;
  position: relative;
  margin:auto;
  text-align: center;
  padding-bottom:10px;
}

@media (min-width:900px) {
  .updated_homepage .analysis_copy {
    padding-bottom:40px;
  }
}

.updated_homepage .analysis_copy p {
  text-wrap:balance;
}

.risk_screenshots {
  display:flex;
  flex-direction:column;
  max-height:600px;
  position:relative;
  mask-image: linear-gradient(to bottom, 
    transparent, 
    black 10%, 
    black 90%, 
    transparent)
}

.homepage_feature h4 {
  text-wrap:balance;
  font-weight:400;
  font-size:33px;
  line-height:1.2;
  margin-bottom:10px;
}

.homepage_feature p {
  font-family: "Inter", -apple-system, sans-serif;
}

.updated_homepage .homepage_feature h4 {
  font-family: "Scorekard";
  font-size:30px;
  font-weight:600;
  letter-spacing:0.4px;
  line-height:1.1;
  margin-bottom:17px;
}

.updated_homepage .homepage_feature p {
  font-size:17px;
}

@media (min-width:900px) {
  .updated_homepage .homepage_feature h4 {
    font-size:44px;
  }
  .updated_homepage .homepage_feature p {
    font-size:20px;
  }
}

.homepage_feature_screenshot {
  background-color:var(--soft-pink);
  min-height:300px;
  max-height:600px;
  border-radius:16px;
  overflow:hidden;
}


.risk_screenshot {
  width:92%;
  max-width:800px;
  position:relative;
  margin:0px auto;
  background-color:var(--paper);
  box-shadow:var(--box-shadow-combined);
  border-radius:14px;
  transform: scale(0.9) translateY(-50%);
}

.risk_screenshot .risk_screenshot_heading, .risk_screenshot .opportunity_screenshot_heading {
  font-family:"Ivar", serif;
  font-size:20px;
  font-weight:600;
  background-color:#db8689;
  color:var(--gentle-white);
  padding:20px 18px;
  border-radius:13px 13px 0 0;
  display:flex;
  align-items:center;
  gap:6px;
}

.risk_screenshot .opportunity_screenshot_heading {
  background-color:#73bea2;
}

.risk_screenshot_block {
  padding-left:18px;
  padding-right:18px;
  padding-bottom:18px;
  padding-top:18px;
}

.risk_screenshot_block .title {
  font-size:20px;
  font-family: "Ivar", serif;
  font-weight:600;
  letter-spacing:-0.5px;
  padding-bottom:5px;
  margin-bottom:4px;
  text-wrap:pretty;
}

.risk_screenshot_block .description {
  font-size:18px;
  text-wrap:pretty;
}

@media (min-width:900px) {
  .risk_screenshot {
    width:75%;
  }
  .risk_screenshot .risk_screenshot_heading, .risk_screenshot .opportunity_screenshot_heading {
    padding:18px 42px;
  }
  .risk_screenshot_block {
    padding-left:42px;
    padding-right:42px;
    padding-bottom:42px;
    padding-top:32px;
  }
}

.verify_your_email_message {
  background-color:var(--paper);
  border:1px solid var(--gridline);
  box-shadow:var(--box-shadow-combined);
  border-radius:12px;
  padding:30px;
  text-align: center;
  max-width:750px;
  position: relative;
  margin-left:auto;
  margin-right:auto;
}

.verify_your_email_message h2 {
  margin-bottom:10px;
}

.verify_your_email_message p {
  font-family: "Matter SemiMono", monospace;
  margin-bottom:20px;
  text-wrap:pretty;
}

.competitor_feature {
  height:600px;
}

.data_angle_feature {
  height:600px;
}

.data_angle_feature_inner {
  height:100%;
  mask-image: linear-gradient(to top, 
    transparent, 
    black 0%, 
    black 92%, 
    transparent);
}

.plan_ahead_feature {
  height:600px;
}

.plan_ahead_feature_inner {
  height:100%;
  mask-image: linear-gradient(to bottom, 
    transparent, 
    black 0%, 
    black 92%, 
    transparent)
}

.plan_ahead_paper a.table_row {
  cursor:pointer;
}

.plan_ahead_paper .events_table .table_row_summary {
  display:block;
}

.competitor_feature_inner {
  height:100%;
  mask-image: linear-gradient(to bottom, 
    transparent, 
    black 0%, 
    black 92%, 
    transparent);
}

.policy_feature {
  height:420px;
}

.competitor_screenshots {
  display:flex;
  justify-content: space-between;
  gap:12px;
}

.competitor_screenshot {
  background-color:#178E96;
  display:flex;
  flex-direction:column;
  width:310px;
  border-radius:8px;
  border:1px solid #167c82;
}

.competitor_screenshot .heading_wrapper {
  display:flex;
  align-items:center;
  gap:12px;
  justify-content: space-between;
  padding-left:14px;
  padding-right:14px;
  padding-bottom:8px;
  padding-top:16px;
  font-weight:600;
  font-size:17px;
  line-height:1.2;
  text-wrap:pretty;
  color:#FDE3C8;
}

.competitor_screenshot img.favicon {
  width:19px;
  height:auto;
  background-color:#FDE3C8;
  padding:3px;
  border:1px solid #167c82;
  border-radius:7px;
}

.competitor_screenshot .competitor_summary {
  font-size:15px;
  flex-grow:1;
  padding:14px;
  padding-top:0;
  line-height:1.2;
  color:#cbb6a0;
}

.competitor_screenshot .competitor_date {
  padding:9px 17px;
  border-radius:0 0 7px 7px;
  font-size:13px;
  font-family:"Matter SemiMono", monospace;
  letter-spacing:-0.4px;
  color:#b3a08c;
  background-color:#137f86;
  border-top:1px solid #167c82;
}

.competitor_paper, .data_angle_paper, .plan_ahead_paper {
  background-color:var(--paper);
  width:100%;
  max-width:780px;
  box-shadow:var(--box-shadow-combined);
  position: relative;
  margin-left:auto;
  margin-right:auto;
  border-radius:11px;
  border:1px solid var(--gridline);
  transform:translateY(30px) scale(0.93);
  font-family: "Ivar", sans-serif;
}

.plan_ahead_paper {
  max-width:880px;
}

.plan_ahead_paper .events_table .table_week_group {
  margin-bottom:18px;
}

.plan_ahead_paper .events_table {
  margin:18px;
}

.data_angle_paper {
  transform: translateY(-360px) scale(0.93);
}

@media (min-width:900px) {
  .competitor_paper {
    transform: translateY(30px) scale(0.9);
  }
  .data_angle_paper {
    transform: translateY(-196px) scale(0.9);
  }
}

.competitor_paper .competitor_headline, .data_angle_paper .competitor_headline {
  font-weight:600;
  letter-spacing:-0.5px;
  text-wrap:balance;
  line-height:1.1;
  text-align:center;
  border-bottom:1px solid var(--gridline);
  padding:48px 30px;
  font-size:28px;
}

.competitor_paper .competitor_summary, .data_angle_paper .competitor_summary {
  padding:40px 52px;
  border-bottom:1px solid var(--gridline);
}

.competitor_paper .competitor_summary_inner, .data_angle_paper .competitor_summary_inner {
  font-size:19px;
  text-wrap:pretty;
  max-width:550px;
  margin-left:auto;
  margin-right:auto;
  position: relative;
}

.homepage_feature .competitor_summary p {
  font-family: "Ivar", serif;
}

.competitor_paper .competitor_sources, .data_angle_paper .competitor_sources {
  font-family:"Matter SemiMono", monospace;
  color:var(--soft-grey);
  font-size:14px;
  margin-bottom:6px;
  display:flex;
  gap:6px;
  align-items: center;
}

.competitor_paper .competitor_example_learnings, .data_angle_paper .competitor_example_learnings {
  padding:12px;
  padding-bottom:24px;
}

@media (min-width:900px) {
  .competitor_paper .competitor_example_learnings, .data_angle_paper .competitor_example_learnings {
    padding:43px;
  }
}

.competitor_example_learnings .competitor_learning {
  box-shadow:var(--box-shadow-combined);
  border-radius:14px;
}

.flagged_example .description {
  font-size:18px;
  text-wrap:pretty;
  padding-top:20px;
  padding-left:20px;
  padding-right:20px;
  margin-bottom:12px;
}

.data_angle_example, .flagged_example {
  box-shadow:var(--box-shadow-combined);
  border-radius:14px;
  padding-bottom:25px;
}

.data_angle_example .heading, .flagged_example .heading {
  background-color:var(--deep-rose);
  font-size:17px;
  color:var(--gentle-white);
  font-weight:600;
  padding:20px;
  border-radius:13px 13px 0 0;
  font-size:19px;
}

.data_angle_example .title {
  font-size:20px;
  letter-spacing:-0.5px;
  font-weight:600;
  margin-bottom:8px;
  text-wrap:pretty;
  padding-left:20px;
  padding-right:20px;
  padding-top:25px;
}

.data_angle_example .description {
  font-size:18px;
  text-wrap:pretty;
  padding-left:20px;
  padding-right:20px;
  margin-bottom:12px;
}

@media(min-width:900px) {
  .flagged_example .description {
    padding-left:42px;
    padding-right:42px;
  }
  .data_angle_example .heading, .flagged_example .heading {
    padding:20px 42px;
  }
  .data_angle_example .title {
    padding-left:42px;
    padding-right:42px;
    padding-top:25px;
  }
  .data_angle_example .description {
    padding-left:42px;
    padding-right:42px;
  }
}

.competitor_example_learnings .competitor_learning .heading {
  background-color:var(--deep-rose);
  font-size:17px;
  color:var(--gentle-white);
  font-weight:600;
  padding:20px 42px;
  border-radius:13px 13px 0 0;
}

.competitor_example_learnings .competitor_learning .title {
  font-size:18px;
  letter-spacing:-0.5px;
  font-weight:600;
  margin-bottom:4px;
  text-wrap:pretty;
  padding-left:42px;
  padding-right:42px;
  padding-top:42px;
}

.competitor_example_learnings .competitor_learning .description {
  font-size:18px;
  text-wrap:pretty;
  padding-left:42px;
  padding-right:42px;
}

svg.white_alert_icon {
  width:20px;
  height:auto;
  stroke:var(--gentle-white);
}

.content p:last-of-type {
  margin-bottom:0;
}

.content .text_inner {
  max-width:650px;
  font-size:20px;
}

.pricing_hero_wrapper {
  padding-top:40px;
  padding-bottom:20px;
}

.pricing_hero h1 {
  font-family: "Ivar";
  font-weight:400;
  font-size:56px;
  margin-bottom:6px;
}

.pricing_hero p.subheading {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size:19px;
  text-wrap:pretty;
}

.plans {
  display:flex;
  justify-content: space-between;
  gap:16px;
  flex-direction:column;
  padding-bottom:30px;
  align-items: stretch;
}

.plan {
  width:100%;
  background-color: var(--paper);
  border:1px solid var(--gridline);
  box-shadow:var(--box-shadow-combined);
  border-radius:8px;
  display:flex;
  flex-direction:column;
  flex: 1 1 0;
  position: relative;
}

.plan.highlighted {
  box-shadow:0 0px 7px 0px #56565666;
  transform:scale(1.015);
  border:1px solid var(--forest);
  background-color:#fff0ea;
}

.plan span.most_popular {
  position:absolute;
  font-family: "Matter SemiMono", monospace;
  font-size:12px;
  color:var(--forest);
  border:1px solid var(--forest);
  padding:5px 10px;
  border-radius:8px;
  top:6px;
  right:5px;
}

@media (min-width:900px) {
  .plans {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
  }
  .plan {
    display:grid;
    grid-template-rows:subgrid;
    grid-row:span 5;
  }
}

.plan .name {
  padding:20px;
  padding-bottom:10px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight:700;
  font-size:18px;
}

.plan .description {
  padding:0 20px;
  font-family: "Matter SemiMono", monospace;
  font-size:15px;
  color:var(--hard-grey);
  padding-bottom:10px;
}

.plan .pricing {
  padding:0 20px;
  font-family: "Matter SemiMono", monospace;
  font-size:16px;
}

span.price {
  font-size:30px;
}

span.vat_label {
  display:block;
  font-size:14px;
  color:var(--hard-grey);
}

.plan .plan_button {
  padding:20px;
  text-wrap:balance;
}

@media (min-width:900px) {
  .plan .name {
    padding-bottom:0;
  }
  .plan .description {
    padding-bottom:0;
  }
  .plan .plan_button {
    padding:0 20px;
  }
}

a.plan_button_link, button.plan_button_link {
  width:100%;
  background-color:var(--forest);
  display:block;
  text-decoration:none;
  color:var(--paper);
  text-align:center;
  border-radius:6px;
  padding:16px 6px;
  font-family:"Matter SemiMono", monospace;
  font-size:15px;
  line-height:22px;
  border:0;
  box-sizing:border-box;
}

a.plan_button_link:hover, button.plan_button_link:hover, button.plan_button_link:focus {
  color:var(--paper);
}

.plan .features {
  padding:20px;
  border-top:1px solid var(--gridline);
  font-family: "Matter SemiMono", monospace;
  font-size:15px;
  color:var(--hard-grey);
}

.plan .features li {
  list-style-type:none;
  margin-bottom:5px;
}

.plan .features li:last-of-type {
  margin-bottom:0;
}

.currency_select {
  display:flex;
  gap:6px;
  margin-bottom:20px;
}

.currency_select a.action_button {
  opacity:0.6;
}

a.action_button.selected {
  opacity:1;
}

.signup_homepage_cta_wrapper {
  background-color:var(--forest);
  text-align:center;
}

.signup_homepage_cta_wrapper a {
  color:#fff;
  text-decoration:none;
  padding:40px 0;
  font-family:"Matter SemiMono", monospace;
}

.signup_homepage_cta_wrapper a:hover {
  color:#fff;
}

.homepage_cta_signup_button {
  display:flex;
  align-items:center;
  gap:6px;
  justify-content: center;
}

.sub_hero_block {
  max-width:1000px;
  margin-bottom:38px;
  position: relative;
  margin:auto;
  text-align: center;
}

.sub_hero_block h2 {
  font-weight:400;
  font-size:33px;
  line-height:1.2;
  text-wrap:balance;
}

.sub_hero_block p {
  margin-bottom:40px;
}

@media (min-width:900px) {
  .sub_hero_block p {
    margin-bottom:60px;
  }
}

img.testimonial_avatar {
  width:65px;
  height:auto;
  border-radius:50%;
}

.testimonial_avatar_wrapper {
  display:flex;
  align-items:center;
  gap:16px;
}

@media (min-width:900px) {
  .testimonial_avatar_wrapper {
    justify-content: center;
  }
}

.testimonial_details span {
  display:block;
  font-size:15px;
  line-height:1.2;
  opacity:0.8;
}

/* Testimonial carousel */
.testimonial_blocks_wrapper {
  padding-top:40px;
  padding-bottom:20px;
  background-color:var(--salmon);
  color:#fff;
  overflow:hidden;
}

.testimonial_carousel {
  position:relative;
}

.testimonial_block {
  display:none;
  text-align:center;
  animation:testimonialFadeIn 0.4s ease;
}

.testimonial_block.active {
  display:block;
}

@keyframes testimonialFadeIn {
  from { opacity:0; transform:translateY(6px); }
  to { opacity:1; transform:translateY(0); }
}

.testimonial_block_quote {
  font-family:'Scorekard';
  font-size:24px;
  line-height:1.2;
  letter-spacing:0.4px;
  text-wrap:balance;
  margin-bottom:20px;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}

@media (min-width:900px) {
  .testimonial_block_quote {
    font-size:30px;
    max-width:inherit;
    margin-bottom:30px;
  }
}

.testimonial_block_attribution {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.testimonial_block_attribution .testimonial_details span {
  display:block;
  font-size:15px;
  line-height:1.2;
  opacity:0.8;
}

.testimonial_block_avatar img.testimonial_avatar {
  width:55px;
  height:auto;
  border-radius:50%;
}

.testimonial_carousel_nav {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:27px;
}

.testimonial_details {
  text-align:left;
}

.testimonial_carousel_dots {
  display:flex;
  gap:8px;
}

.testimonial_carousel_dot {
  width:11px;
  height:11px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.4);
  cursor:pointer;
  padding:0;
  transition:background 0.2s;
}

.testimonial_carousel_dot.active {
  background:#fff;
}

.testimonial_carousel_dot:hover {
  background:rgba(255,255,255,0.7);
}

.homepage_hero_testimonial_wrapper {
  padding:40px 0;
  background-color:var(--salmon);
  color:#fff;
}

.homepage_hero_testimonial_inner {
  display:flex;
  justify-content: center;
}

.homepage_hero_testimonial {
  display:flex;
  gap:18px;
  align-items:center;
  font-family: 'Matter SemiMono', monospace;
  position: relative;
  margin:auto;
}

.testimonial_copy .quote {
  margin-bottom:20px;
  text-wrap:pretty;
  line-height:1.2;
  font-size:20px;
  font-family: 'Scorekard';
  letter-spacing: 0.4px;
}

.testimonial_role {
  font-size:13px;
  opacity:0.8;
}

@media(min-width:900px) {
  .testimonial_copy {
    display:flex;
    align-items:center;
    gap:20px;
  }
}

@media (min-width:900px) {
  .testimonial_copy .quote {
    font-size:25px;
    text-wrap:pretty;
    max-width:580px;
    margin-bottom:0;
  }
  .testimonial_role {
    font-size:14px;
  }
  img.testimonial_avatar {
    display:block;
    width:75px;
  }
}

.founder_bios {
  display:flex;
  flex-direction: column;
  gap:50px;
}

.founder_bio {
  width:100%;
  display:flex;
  flex-direction:column;
  position: relative;
  gap:16px;
  align-items: center;
}

.founder_bio .avatar {
  border-radius:16px;
  position: relative;
  width:100px;
}

img.founder_avatar {
  display:block;
  width:100%;
  height:auto;
  border-radius:50%;
}

.founder_description .name {
  font-family: "Scorekard";
  font-weight:400;
  letter-spacing:0.4px;
  font-size:24px;
  margin-bottom:4px;
}

.founder_description .description {
  font-family: "Matter SemiMono", monospace;
  font-size:15px;
}

.founder_bio .founder_description {
  padding:26px 16px;
  background-color:var(--paper);
  box-shadow:var(--box-shadow-combined);
  border-radius:16px;
  width:100%;
  box-sizing: border-box;
}

@media (min-width:800px) {
  .founder_bio {
    flex-direction:row;
    align-items:center;
  }
  .founder_bio .founder_description {
    width:80%;
  }
}

@media (min-width:1200px) {
  .founder_bios {
    flex-direction:row;
    gap:20px;
  }
  .founder_bio {
    align-items:stretch;
    background-color:var(--paper);
    box-shadow:var(--box-shadow-combined);
    border-radius:16px;
  }
  .founder_bio .avatar {
    overflow:hidden;
    min-width:180px;
    border-radius:16px 0 0 16px;
    padding:0;
  }
  img.founder_avatar {
    height:100%;
    aspect-ratio:1;
    max-height:auto;
    border-radius:0;
    object-fit:cover;
  }
  .founder_description .description {
    font-size:16px;
  }
  .founder_bio .founder_description {
    background-color:inherit;
    box-shadow:none;
  }
}

.questions {
  max-width:800px;
  margin:0 auto;
  display:flex;
  flex-direction: column;
  gap:20px;
}

.question {
  background-color:var(--paper);
  box-shadow:var(--box-shadow-combined);
  border-radius:8px;
  transition:transform 0.4s ease;
}

.question .title {
  padding:26px;
  padding-right:50px;
  position:relative;
  font-weight:400;
  font-size:25px;
  cursor:pointer;
  user-select:none;
  font-family: "Scorekard";
  letter-spacing:0.4px;
}

.question .title .question_icon {
  position:absolute;
  top:29px;
  right:20px;
}

.question .title .question_icon svg {
  width:20px;
  height:20px;
  transition:transform 0.2s ease;
  stroke: var(--soft-black);
}

.question.open .title .question_icon svg {
  transform:rotate(45deg);
}

.question .answer {
  height:0;
  overflow:hidden;
  opacity:0;
  transition:opacity 0.2s ease, padding 0.2s ease, height 0.2s;
  font-family: "Inter";
  font-size:18px;
  padding:0 20px;
}

.question:hover {
  transform:scale(1.01);
  transition:transform 0.1s ease;
}

.question .answer.revealed {
  height:auto;
  opacity:1;
  padding:20px;
  padding-top:0;
}

.updated_homepage .homepage_hero h1 {
  font-family: "Scorekard";
  letter-spacing:0.4px;
  font-weight:600;
  font-size:39px;
  line-height:1;
}

@media (min-width:900px) {
  .updated_homepage .homepage_hero h1 {
    font-size:51px;
  }
}

@media (min-width:1000px) {
 .updated_homepage .homepage_hero_wrapper {
    padding:60px 0;
  } 
}

.links {
  padding-top:15px;
  display:flex;
  align-items:center;
  gap:6px;
  opacity:0.8;
}

.founder_link_icon {
  width: 18px;
  height:auto;
  stroke: var(--soft-black);
  border:1px solid var(--soft-black);
  padding:5px;
  border-radius:6px;
}

.comparison_table {
  max-width:1000px;
  margin:auto;
}

.comparison_table th {
  font-family: "Scorekard";
  font-weight:400;
  letter-spacing:0.4px;
  font-size:21px;
}

.comparison_table td {
  font-family: "Inter";
  width:50%;
}

.comparison_table td.before {
  color:#d50906;
}

.comparison_table td.after {
 color:var(--forest); 
}

.updated_homepage .homepage_feature p.explanation {
  font-size:17px;
  text-wrap:pretty;
}

.trial_cta {
  background-color:var(--paper);
  text-align:center;
  box-shadow:var(--box-shadow-combined);
  position:relative;
  margin:auto;
  border-radius:8px;
  border:1px solid var(--gridline);
  padding:26px 20px;
  font-family: "Inter";
}

.trial_cta a, .trial_cta a:hover {
  color:var(--forest);
}

.support_banner_wrapper {
  padding:40px 0;
  text-align: center;
  font-family:"Inter";
  font-size:18px;
  text-wrap:balance;
}

@media (min-width:900px) {
  .support_banner_wrapper {
    font-size:20px;
  }
}

.action_button.with_chevron {
  display:inline-flex;
  gap:3px;
}

span.new_feature_label {
  font-family: "Inter", sans-serif;
  font-size:15px;
  font-weight:600;
  background-color:var(--magic);
  color:var(--paper);
  border:1px solid #ec7474;
  padding:6px 12px;
  display:inline-block;
  transform:rotate(-4deg);
  border-radius:8px;
  margin-bottom:8px;
}