@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

/*
  ===================== GLOBAL VARIABLES =====================
*/

:root {
  --color-sure-orange: #F28C28;
  --color-midnight-slate: #1E2429;
  --color-cloud-grey: #C8CFD5;
  --color-paper-white: #F5F7FA;
  --color-steel-blue: #4A6572;
  --color-soft-charcoal: #2E363C;
  --color-card-grey: #E8ECEF;
  --color-aqua-blue: #2EC4B6;
  --color-light-blue: #5B8DEF;
  --color-dark-orange: #b77b43;
  --color-warm-sand: #E9D8A6;

  --primary-text: var(--color-soft-charcoal);
  --secondary-text: var(--color-sure-orange);
  --muted-text: var(--color-cloud-grey);
  --primary-bg: var(--color-paper-white);
  --secondary-bg: var(--color-card-grey);
  --navbar-bg: var(--color-midnight-slate);
  --navbar-text: #ffffff;
  --navbar-link: var(--color-cloud-grey);
  --link-colour: var(--color-steel-blue);
  --link-hover: var(--color-sure-orange);
  --card-border: var(--color-steel-blue);
  --accent: var(--color-light-blue);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: clamp(2rem, 5vw, 3rem);
  --space-xl: clamp(3rem, 6vw, 4rem);

  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-soft: 0 12px 24px rgba(13, 22, 29, 0.12);
  --shadow-medium: 0 16px 32px rgba(13, 22, 29, 0.18);
  --shadow-strong: 0 24px 45px rgba(18, 27, 36, 0.2);
  --shadow-accent: 0 12px 24px rgba(242, 140, 40, 0.35);

  --dark-green: #1a7d12;
  --success: #23ff2f;
  --warning: #ffea2b;
  --warning-translucent: rgba(255, 234, 43, 0.1);
  --error: #c00000;
  --disabled: #8a8c8f;
}


/*
  ===================== RESET =====================
*/

* {
  margin: 0;
  box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
    }

html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

.no-bullet-points {
  list-style: none;
}

a {
  color: var(--link-colour);
}

a:hover,
a:focus {
  color: var(--link-hover);
}

img {
  max-width: 100%;
  display: block;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/*
  ===================== GLOBAL STYLE =====================
*/
/* Text colors */
.text-primary {
  color: var(--primary-text);
}

.text-secondary {
  color: var(--secondary-text);
}

body {
  color: var(--primary-text);
  background: var(--primary-bg);
  overflow-x: hidden;
  font-family: 'Helvetica Neue', Helvetica, 'Microsoft Sans Serif', sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  padding-top: 2ch;
  padding-bottom: 0.5ch;
  padding-left: 0.5ch;
  padding-right:0.5ch;
}

h1 {
  font-weight: 500;
  color: var(--primary-text);
  font-size: 350%;
}

h2 {
  color: var(--primary-text);
  font-size: 200%;
}

h2,
h3 {
  font-weight: 400;
}


p {
  margin: 10px 0;
  padding-left: 2ch;
  padding-right: 2ch;
}

table {
  margin-top: 20px;
  table-layout: fixed;
  width: 100%;
  display: table;
  border-spacing: 0;
}

th {
  text-align: left;
}

:focus {
  outline: 2px dotted;
  outline-offset: 0.25rem;
}

label {
  color: var(--primary-text);
  font-weight: 200;
  line-height: 1.2;
}

input[type=email]
input[type=password] {
  min-width: 40ch;
}

select {
  font-size: 75%;
}

/*
  ===================== COMPOSITION =====================
*/

.wrapper {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}

/* Add top margin to all elements that aren't the first */
.flow > * + * {
  margin-top: var(--flow-space, 1em);
}

.flex {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-row {
  display: flex;
}

.hidden {
  display: none;
}


/*
  ===================== BLOCK =====================
*/

#pageContainer {
  min-height: 80vh;

}

#mainContainer {

  width: 100vw;
  transition: background 0.2s;
}

.small-text {
  font-size: 70%;
}

/*
  ===================== Logged Out Style =====================
*/

/* Navbar */

.navbar-top {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navbar-bg);
  color: var(--navbar-text);
  width: 100%;
  height: 96px;
  padding: 0 30px;
  transition: 0.5s;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(74, 101, 114, 0.35);
}

.navbar-top .logo {
  display: flex;
  font-weight: 400;
  font-size: 230%;
  color: var(--navbar-text);
}

.logo {
  display: flex;
  align-items: center;
}

.navbar-top ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.navbar-top a {
  color: var(--navbar-link);
  margin: 0 5px;
  font-size: 140%;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 0.9rem;
  transition: color 0.2s ease;
}

.navbar-top a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.35rem;
  height: 2px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.navbar-top a:hover,
.navbar-top a:focus {
  color: var(--navbar-text);
}

.navbar-top a:hover::after,
.navbar-top a:focus::after {
  background: var(--secondary-text);
  transform: scaleX(1);
}

.navbar-top .logo a {
  color: var(--navbar-text);
}

.logo a:hover {
  border-bottom: 0;
}

.logo-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: var(--navbar-text);
  gap: var(--space-sm);
}

.logo-icon {
  display: block;
  height: 64px; /* ~66% of 96px navbar height */
  width: auto;
}


.showcase {
  color: var(--primary-text);
  height: 97vh;
}

.showcase .flex-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.82) 0%, rgba(245, 247, 250, 0.68) 55%, rgba(30, 36, 41, 0.22) 100%),
    url('images/home/background-docs.jpg') no-repeat center / cover;
}

.showcase .content1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  padding: clamp(2rem, 6vw, 5rem);
  flex: 1.5 0 0;
  gap: 1.5rem;
}

.showcase-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--primary-text);
  margin: 0;
  animation: showcase-fade-up 0.6s ease-out both;
}

.showcase-subhead {
  max-width: 38ch;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.6;
  color: rgba(46, 54, 60, 0.88);
  font-weight: 500;
  margin: 0;
  animation: showcase-fade-up 0.6s ease-out 0.1s both;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: 0;
  animation: showcase-fade-up 0.6s ease-out 0.2s both;
}

.showcase h2 {
  font-size: 300%;
}


/*
  ===================== PARTNERS =====================
*/

.partners {
  background: var(--primary-bg);
  border-top: 1px solid rgba(74, 101, 114, 0.12);
  border-bottom: 1px solid rgba(74, 101, 114, 0.12);
  padding: var(--space-lg) 0;
}

.partners-wrapper {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.partners-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-aqua-blue);
}

.partners-title {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--primary-text);
  font-weight: 600;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-sm);
}

.partners-logos img {
  height: 44px;
  width: auto;
  filter: grayscale(100%) brightness(0.85);
  opacity: 0.85;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.partners-logos img:hover,
.partners-logos img:focus {
  filter: none;
  opacity: 1;
}

.partners-footnote {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(46, 54, 60, 0.6);
}
.showcase h3 {
  font-size: 200%;
  padding: 20px 50px;
  font-weight: bold;
}

.showcase .content2 {
  display: flex;
  flex: 1 0 0;
  justify-content: center;
}


/* Icons */
.icons {
  padding: 30px;
}

.icons h3 {
  font-weight: bold;
  margin-bottom: 15px;
}

.icons i {
  background-color: var(--secondary-text);
  color: #fff;
  padding: 1rem;
  border-radius: 50%;
  margin-bottom: 15px;
}



/* Section header */
.section-header {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-header p {
  color: var(--muted-text);
}




/* Flex items */
.flex-items {
  display: flex;
  text-align: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.flex-items > div {
  padding: 50px;
  flex: 1;
  justify-content: center;
}

/* Flex columns */
.flex-columns.flex-reverse .row {
  flex-direction: row-reverse;
}

.flex-columns .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.flex-columns .column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

.flex-columns .column-1,
.flex-columns .column-2 {
  height: 100%;
}

.flex-columns img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex-columns .column-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.flex-columns h2 {
  font-weight: 100;
}

.flex-columns h4 {
  margin-bottom: 10px;
}

.flex-columns p {
  margin: 20px 0;
}




/*
  ===================== SOLUTIONS =====================
*/

.solutions {
  background:
    radial-gradient(circle at top left, rgba(242, 140, 40, 0.12), transparent 55%),
    linear-gradient(115deg, rgba(30, 36, 41, 0.95) 0%, rgba(30, 36, 41, 0.88) 45%, rgba(30, 36, 41, 0.96) 100%);
  color: var(--primary-bg);
  padding: var(--space-xl) 0;
}

.solutions-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: var(--space-lg);
  align-items: stretch;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.solutions-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.solutions-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.solutions-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-aqua-blue);
}

.solutions-copy h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--primary-bg);
  margin: 0;
}

.solutions-lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.85);
  margin: 0;
}

.solutions-copy strong {
  color: var(--secondary-text);
}

.solutions-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

.solutions-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 247, 250, 0.9);
}

.benefit-icon {
  color: var(--secondary-text);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.solutions-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  align-items: center;
}

.solutions-contact {
  color: var(--color-aqua-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(46, 196, 182, 0.4);
}

.solutions-contact:hover {
  color: var(--secondary-text);
  text-decoration-color: rgba(242, 140, 40, 0.5);
}

.solutions-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 75rem;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  padding: 0 clamp(1.5rem, 6vw, 3rem);
}

.highlight-card {
  background: rgba(248, 250, 252, 0.08);
  border: 1px solid rgba(200, 207, 213, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--primary-bg);
  box-shadow: var(--shadow-soft);
}

.highlight-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--secondary-text);
}

.highlight-card p {
  margin: 0;
  color: rgba(245, 247, 250, 0.8);
  line-height: 1.6;
}

.pricing {
  background: var(--primary-bg);
  padding: var(--space-xl) 0;
}

.pricing-wrapper {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  gap: var(--space-lg);
}

.pricing-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-aqua-blue);
}

.pricing-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  color: var(--primary-text);
}

.pricing-lead {
  margin: 0 auto;
  max-width: 48rem;
  color: var(--muted-text);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 101, 114, 0.2);
  background: linear-gradient(160deg, rgba(232, 236, 239, 0.8), rgba(245, 247, 250, 0.95));
  box-shadow: var(--shadow-soft);
  color: var(--primary-text);
}

.pricing-card > *:last-child {
  margin-top: auto;
}

.pricing-card-featured {
  border-color: rgba(242, 140, 40, 0.45);
  background: linear-gradient(160deg, rgba(242, 140, 40, 0.15), rgba(232, 236, 239, 0.95));
  box-shadow: var(--shadow-accent);
}

.pricing-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  background: var(--secondary-text);
  color: var(--primary-bg);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.pricing-tier {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pricing-employees {
  margin: 0;
  color: rgba(46, 54, 60, 0.7);
  font-weight: 500;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.pricing-amount {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-text);
}

.pricing-term {
  font-size: 0.95rem;
  color: rgba(46, 54, 60, 0.7);
}

.pricing-annual {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: rgba(46, 54, 60, 0.8);
}

.pricing-annual-amount {
  font-weight: 600;
}

.pricing-annual-note {
  font-size: 0.85rem;
}

.pricing-includes {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: rgba(46, 54, 60, 0.85);
}

.pricing-includes li::marker {
  color: var(--secondary-text);
}

.pricing-cta {
  margin-top: auto;
  text-align: center;
}

.pricing-card-featured .pricing-cta {
  box-shadow: none;
}

.testimonial {
  margin: var(--space-xl) auto 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: center;
  max-width: 72rem;
  padding: var(--space-lg);
  background: rgba(245, 247, 250, 0.1);
  border: 1px solid rgba(200, 207, 213, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(6px);
}

.testimonial-portrait {
  width: clamp(120px, 18vw, 180px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(242, 140, 40, 0.7);
  box-shadow: var(--shadow-accent);
}

.testimonial-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-quote {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.92);
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 3rem;
  color: rgba(242, 140, 40, 0.7);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-name {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-bg);
}

.testimonial-role {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(200, 207, 213, 0.8);
}

.testimonial-link {
  color: var(--color-aqua-blue);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(46, 196, 182, 0.4);
}

.testimonial-link:hover {
  color: var(--secondary-text);
  text-decoration-color: rgba(242, 140, 40, 0.5);
}


/*
  ===================== VALUE SECTION =====================
*/

.value-section {
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
  padding: var(--space-xl) 0;
}

.value-wrapper {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  gap: var(--space-lg);
}

.value-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.value-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-aqua-blue);
}

.value-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 2.6rem);
  color: var(--primary-text);
}

.value-lead {
  margin: 0 auto;
  max-width: 42rem;
  color: rgba(46, 54, 60, 0.75);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(74, 101, 114, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.value-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-text);
}

.value-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: var(--space-xs);
  color: rgba(46, 54, 60, 0.85);
  line-height: 1.6;
  font-size: 0.95rem;
}

.value-card li::marker {
  color: var(--secondary-text);
}


/*
  ===================== ETHOS =====================
*/

.ethos {
  background: var(--primary-bg);
  padding: var(--space-xl) 0;
}

.ethos-wrapper {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.ethos-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ethos-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-aqua-blue);
}

.ethos-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--primary-text);
}

.ethos-lead {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--muted-text);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.7;
}

.ethos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.ethos-card {
  background: var(--secondary-bg);
  border: 1px solid rgba(74, 101, 114, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.ethos-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(46, 196, 182, 0.08), transparent 55%, rgba(242, 140, 40, 0.08) 100%);
  opacity: 0.9;
}

.ethos-card > * {
  position: relative;
  z-index: 1;
}

.ethos-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary-text);
  color: var(--primary-bg);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-accent);
}

.ethos-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--primary-text);
}

.ethos-card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
  color: var(--primary-text);
  line-height: 1.6;
}

.ethos-card li::marker {
  color: var(--color-aqua-blue);
}


/*
  ===================== FOUNDERS =====================
*/

.founders {
  background: var(--primary-bg);
  padding: var(--space-xl) 0;
}

.founders-wrapper {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  gap: var(--space-lg);
}

.founders-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.founders-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-aqua-blue);
}

.founders-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  color: var(--primary-text);
}

.founders-lead {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--muted-text);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.7;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.founder-card {
  background: linear-gradient(160deg, rgba(232, 236, 239, 0.85), rgba(245, 247, 250, 0.95));
  border: 1px solid rgba(74, 101, 114, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.founder-portrait {
  width: clamp(128px, 15vw, 168px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  align-self: center;
  box-shadow: var(--shadow-accent);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.founder-card h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--primary-text);
}

.founder-role {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(46, 54, 60, 0.7);
}

.founder-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: rgba(46, 54, 60, 0.85);
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
}

.founder-card li::marker {
  color: var(--secondary-text);
}


.contact {
  background: var(--primary-bg);
  padding: var(--space-xl) 0;
}

.contact-wrapper {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  gap: var(--space-lg);
}

.contact-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-aqua-blue);
}

.contact-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--primary-text);
}

.contact-lead {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--muted-text);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: var(--space-lg);
}

.contact-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.contact-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.contact-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(0deg, rgba(30, 36, 41, 0.85) 0%, rgba(30, 36, 41, 0.3) 70%, transparent 100%);
  color: var(--primary-bg);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-overlay p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
}

.contact-overlay span {
  font-size: 0.85rem;
  color: rgba(245, 247, 250, 0.75);
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(74, 101, 114, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  padding: var(--space-lg);
  backdrop-filter: blur(8px);
}

.contact-form {
  display: grid;
  gap: var(--space-md);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--primary-text);
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(74, 101, 114, 0.35);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--secondary-text);
  box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.15);
  outline: none;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.contact-assurance {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(46, 54, 60, 0.7);
}

.contact-form .button-primary {
  align-self: stretch;
  padding: 0.95rem;
  font-size: 1rem;
  justify-content: center;
}

form:not(.contact-form) {
  width: 75%;
  padding: 20px 0;
}

form:not(.contact-form) label {
  display: block;
  margin-bottom: 5px;
}

form:not(.contact-form) .form-control {
  margin-bottom: 15px;
  min-width: 30ch;
}

form:not(.contact-form) input {
  min-width: 75%;
  padding: 4px;
  height: 40px;
  border: 1px solid var(--card-border);
}

form:not(.contact-form) input:focus {
  outline-color: var(--secondary-text);
}

form:not(.contact-form) .button {
  padding: 12px 0;
  margin-top: 20px;
  height: 60px;
}



.logged-in-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
  padding: 20px;
  padding-top: 100px;
  min-height: 90vh;
  width: 100%;
  position: relative;
  
}

#page-container {
  padding: 50px 30px;
  background-color: var(--secondary-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 0 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

.pages .page {
  display: none;
  align-items: center;
}

.pages .page.is-active{
  display: flex;
}

.page .flex-column {
  padding-top: 5ch;
  width: 100%;
}

.page .flex-column ol {
  list-style: decimal inside;
  text-indent: 2ch;
}

/* Config form */

#config {
  align-items: center;
}

#config div {
  align-items: center;
}

#config div h2 {
  align-items: center;
}

.config-form {
  width: fit-content;
}

#loginDialog ul li {
  padding-top: 3ch;
}

#generate-access-token-description p {
  width: 80%;
  text-align: center;
}

/* contact form */
.contact .column-2 {
  padding: 30px;
}

nav .tabs .tab a[data-switcher] {
  display: block;
  font-weight: 300;
}

nav .tab.is-active a[data-switcher]{
  font-weight: 800;
  border-bottom: var(--secondary-text) 3px solid;
}


footer * {
  margin: 0.8ch;
  padding: 0.2ch;
  font-size: 80%;
  text-align: center;
  padding-left: 4ch;
}

footer {
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
  background-color: var(--navbar-bg);
  color: var(--navbar-text);
  padding: 1.5ch 3ch;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
  color: var(--navbar-link);
}

footer a:hover {
  color: var(--navbar-text);
}

tr {
  display: table-row;
}

thead tr,
tbody tr:nth-child(even) {
  background-color: var(--secondary-bg);
}

th {
  font-size: 75%;
}

th,
td {
  overflow-wrap: break-word;
  display: table-cell;
  padding: 1ch 0.5ch;
  width: max-content;
}

td {
  font-size: 65%;
}

/*
  ===================== REUSABLE COMPONENTS =====================
*/

.blurrable {
  transition: filter 0.2s;
}


/*
  ===================== SPINNER =====================
*/

.spinner:after {
  content: "◟";
  display: block;
  animation: spinner 1.6s cubic-bezier(0.175, 0.885, 0.32, 1.9) infinite;
  font-size: 200%;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  padding-left: 1ch;
}

@keyframes showcase-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*
  ===================== ROUNDED TOGGLE =====================
*/

/* The toggle - the box around the slider */
.toggle {
  position: relative;
  display: inline-block;
  width: 7.5ch;
  height: 4.25ch;
}

/* Hide default HTML checkbox */
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark-green);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 3.25ch;
  width: 3.25ch;
  left: 0.5ch;
  bottom: 0.5ch;
  background-color: var(--primary-bg);
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--primary-bg);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-text);
}

input:checked + .slider:before {
  -webkit-transform: translateX(3.25ch);
  -ms-transform: translateX(3.25ch);
  transform: translateX(3.25ch);
}

/* Rounded sliders */
.slider.round {
  border-radius: 4.25ch;
}

.slider.round:before {
  border-radius: 50%;
}

/*
  ===================== BUTTONS =====================
*/


.button {
  align-self: center;
  margin: 0.5ch;
}

.button,
input[type=submit] {
  transition: background-color 0.2s, border 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.button:link,
.button:visited,
input[type=submit] {
  padding: 0.75rem 1.4rem;
  text-decoration: none;
  border-radius: 10px;
  margin-bottom: 3px;
  font-size: 1rem;
}

.button-primary,
.button-primary:link,
.button-primary:visited,
input[type=submit]:not(.submit-input-secondary) {
  background-color: var(--secondary-text);
  border: 1px solid var(--secondary-text);
  color: var(--navbar-text);
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(242, 140, 40, 0.25);
}

.button-primary:hover,
.button-primary:active,
input[type=submit]:not(.submit-input-secondary):hover,
input[type=submit]:not(.submit-input-secondary):active {
  background-color: #d97820;
  border-color: #d97820;
  color: var(--navbar-text);
  box-shadow: 0 6px 14px rgba(242, 140, 40, 0.35);
}

.button-secondary,
.button-secondary:link,
.button-secondary:visited,
.submit-input-secondary {
  background-color: transparent;
  border: 1px solid var(--secondary-text);
  color: var(--secondary-text);
  box-shadow: none;
  font-weight: 600;
}

.button-secondary:hover,
.button-secondary:active,
.submit-input-secondary:hover,
.submit-input-secondary:active {
  background-color: rgba(242, 140, 40, 0.12);
  color: var(--primary-text);
}

.button-tertiary:link,
.button-tertiary:visited {
  background-color: transparent;
  padding: 0.1em;
  border: none;
  color: var(--link-colour);
  box-shadow: none;
}

.button-tertiary:hover,
.button-tertiary:active {
  border-color: var(--link-hover);
  color: var(--link-hover);
  background-color: rgba(74, 101, 114, 0.1);
}

.disabled-button {
  pointer-events: none;
  color: var(--muted-text);
  background-color: rgba(200, 207, 213, 0.6);
  border: 1px solid rgba(200, 207, 213, 0.9);
  box-shadow: none;
}

.tooltip {
  display: inline-block;
  position: relative;
  border-bottom: 1px dotted var(--primary-text);
}

.tooltip .tooltipText {
  visibility: hidden;
  width: fit-content;
  min-width: 120px;
  background-color: var(--primary-bg);
  color: var(--primary-text);
  text-align: center;
  border-radius: 6px;
  padding: 8px 4px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltipText::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--primary-text) transparent transparent transparent;
}

.tooltip:hover .tooltipText {
  visibility: visible;
  opacity: 1;
}

.subtle {
  color: var(--disabled);
  font-size: 75%;
  vertical-align: bottom;
}

.bg-secondary {
  background: var(--secondary-bg);
  color: var(--primary-text);
  border: 1px solid var(--card-border);
}

.bg-dark {
    background: var(--navbar-bg);
    color: var(--primary-bg);
}

.btn-outline {
    background: transparent;
    border: 1px solid #fff;
}

/*
  ===================== DIALOG =====================
*/

.dialog {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 12px 30px rgba(30, 36, 41, 0.2);
  border-radius: 2%;
  z-index: 200;
}

.dialog-x {
  display: flex;
  justify-content: flex-end;
  font-family: 'Fredoka One', cursive;
}

.dialog-x a {
  width: 2rem;
  height: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, box-shadow 0.3s;
  box-shadow: 0px 0px 0px transparent;
  line-height: 1;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.dialog-x a:hover,
.dialog-x a:active {
  color: var(--secondary-text);
  box-shadow: 3px 4px 4px rgba(30, 36, 41, 0.15);
}

.dialog-x:first-child {
  padding: 5px 10px;
}

.dialog-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  overflow-y: scroll;
}

#post-audit-log-dialog .dialog-body {
  justify-content: flex-start;
}

.dialog-body div,
.dialog-body p {
  padding-left: 1ch;
  padding-right: 1ch;
}

.dialog-body ol,
.dialog-body ul {
  padding-left: 5ch;
  padding-right: 3ch;
}

.dialog-body h2 {
  padding-left: 0.5ch;
  padding-right: 0.5ch;
}

.dialog-body ul,
.dialog-body ol {
  padding-bottom: 1ch;
}

.dialog-body:last-child {
  margin-bottom: 4ch;
}

/*
  ===================== SNACKBAR / TOAST =====================
*/

.snackbar {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  margin: 2%;
  width: 96vw;
  bottom: 2%;
  box-shadow: 4px 6px 5px var(--disabled);
  border-radius: 2%;
  transition: visibility 0.5s, opacity 0.5s;
  z-index: 300;
  display: none; /* otherwise there's an awful flash if the initial page load is slow */
  align-items: center;
  justify-content: center;
  padding: 0.3ch;
}

.snackbar-persistent {
  z-index: 250;
}

#snackbar-success {
  background-color: var(--success);
  font-size: 200%;
}

#snackbar-warning {
  background-color: var(--warning);
}

#snackbar-error {
  background-color: var(--error);
  color: white;
}

.snackbar-persistent {
  background-color: var(--primary-bg);
  box-shadow: 0px 3px 6px var(--primary-text);
}

/*
  ===================== SPECIFIC BITS AND PIECES =====================
*/

.quote:before,
.quote:after {
  display: block;
  position: absolute;
  font-size: 300%;
}

.quote::before {
  content: '\201c';
  top: -0.2ch;
  left: 0;
}

.quote:after {
  content: '\201d';
  bottom: -0.9ch;
  right: 0;
}

.quote {
  display: table-caption;
  position: relative;
  padding: 3ch;
  text-align: center;
  width: 90%;
  overflow: clip;
}

.big-quote {
  font-size: 200%;
}

.small-quote {
  font-size: 50%;
}



.post-table-parent {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.post-table {
  width: 100%;
}


.bulk-forward {
  display: none;
}

.audit-log-row {
  vertical-align: top;
}

.tertiary-buttons-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.tertiary-buttons-row * {
  margin: 0.2em;
}

.feature-preview {
  border: 3px dashed var(--warning);
  background-color: var(--warning-translucent);
}

.mobile-only {
  display: none;
}

/* Applied feature visibility control - hide by default, only show when not hidden */
.applied-feature {
  display: none !important;
}

.applied-feature:not(.hidden) {
  display: block !important;
}

/*
  ===================== DATA-TABLE COMPONENT =====================
*/

.data-table-container {
  width: 100%;
}

.table-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(232, 236, 239, 0.5);
  border-radius: var(--radius-md);
}

.table-filter {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.table-filter-input {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(74, 101, 114, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  min-width: 250px;
}

.table-filter-input:focus {
  border-color: var(--secondary-text);
  box-shadow: 0 0 0 2px rgba(242, 140, 40, 0.15);
  outline: none;
}

.table-clear-btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 101, 114, 0.2);
}

data-table table {
  margin-top: 0;
}

data-table th.sortable {
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: background-color 0.2s ease;
}

data-table th.sortable:hover {
  background-color: rgba(74, 101, 114, 0.1);
}

/* Reserve space for sort indicator to prevent width changes */
data-table th.sortable::after {
  content: '';
  display: inline-block;
  width: 0.75rem;
  margin-left: 0.25rem;
}

.sort-indicator {
  font-weight: normal;
  color: var(--secondary-text);
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.sort-indicator.sort-asc {
  color: var(--secondary-text);
}

.sort-indicator.sort-desc {
  color: var(--secondary-text);
}

/* Alternating row background colors */
data-table tbody tr:nth-child(odd) {
  background-color: transparent;
}

data-table tbody tr:nth-child(even) {
  background-color: rgba(74, 101, 114, 0.05);
}

/* Hover effect for table rows */
data-table tbody tr:hover {
  background-color: rgba(242, 140, 40, 0.08) !important;
}

/* Audit log table specific styling */
#audit-log-events table {
  table-layout: fixed;
  width: 100%;
}

/* Audit log column widths - minimize empty space */
#audit-log-events th:nth-child(1),
#audit-log-events td:nth-child(1) {
  width: 10%; /* Date & Time */
}

#audit-log-events th:nth-child(2),
#audit-log-events td:nth-child(2) {
  width: 12%; /* Event */
}

#audit-log-events th:nth-child(3),
#audit-log-events td:nth-child(3) {
  width: 12%; /* By user */
}

#audit-log-events th:nth-child(4),
#audit-log-events td:nth-child(4) {
  width: 10%; /* Entity Type */
}

#audit-log-events th:nth-child(5),
#audit-log-events td:nth-child(5) {
  width: 10%; /* Entity Id */
}

#audit-log-events th:nth-child(6),
#audit-log-events td:nth-child(6) {
  width: 46%; /* Details - gets remaining space */
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Table button styling */
data-table button,
data-table .button {
  border-radius: var(--radius-md) !important;
  border-color: transparent !important;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.25rem 0.375rem !important;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Edit buttons - no visible border */
data-table button[title*="Edit"],
data-table .button[title*="Edit"] {
  border: none !important;
  background-color: transparent !important;
  color: var(--secondary-text) !important;
}

data-table button[title*="Edit"]:hover,
data-table .button[title*="Edit"]:hover {
  background-color: rgba(242, 140, 40, 0.12) !important;
  color: var(--primary-text) !important;
}

/* Action column buttons - consistent sizing */
data-table td:last-child {
  white-space: nowrap;
  min-width: max-content;
}

data-table td:last-child button,
data-table td:last-child .button {
  min-width: 2.5rem;
  min-height: 2.5rem;
  margin: 0.1rem;
  border-radius: var(--radius-md) !important;
  flex-shrink: 0;
}


/*
  ===================== Media Queries =====================
*/


body {
  font-size: clamp(16px, 0.4vw + 15px, 19px);
}

@media (max-width: 1024px) {
  .solutions-hero {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .solutions-media {
    order: 2;
  }
  .solutions-copy {
    order: 1;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .founders-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonial {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }
  .testimonial-copy {
    align-items: center;
  }
  .testimonial-quote::before {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #navbar nav,
  .showcase .content2 {
    display: none;
  }
  .showcase {
    height: 45vh;
    font-size: 90%;
  }
  .showcase .content1 {
    padding-bottom: var(--space-lg);
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: var(--space-lg) var(--space-md);
  }
  .showcase-headline,
  .showcase-subhead {
    text-align: center;
  }
  .showcase-subhead {
    margin-left: auto;
    margin-right: auto;
  }
  .showcase-actions {
    justify-content: center;
  }
  .solutions {
    padding: var(--space-lg) 0;
  }
  .solutions-highlights,
  .pricing-grid,
  .ethos-grid,
  .founders-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card,
  .ethos-card,
  .contact-form-card {
    padding: var(--space-md);
  }
  .founder-card {
    align-items: center;
    text-align: center;
  }
  .founder-body {
    align-items: center;
  }
  .testimonial {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .testimonial-copy {
    align-items: center;
  }
  .testimonial-quote::before {
    display: none;
  }
  .testimonial-name,
  .testimonial-role,
  .testimonial-link {
    text-align: center;
  }
  .partners-logos {
    gap: var(--space-md);
  }
  .partners-logos img {
    height: 36px;
  }
  .contact-form .button-primary {
    align-self: center;
    width: 100%;
  }
  form:not(.contact-form) {
    width: 100%;
  }
  .button:link, .button:visited, input[type="submit"] {
    font-size: 140%;
  }
  .mobile-only {
    display: block;
  }
}
