@font-face {
  font-family: Jakarta;
  src: url("plus-jakarta-sans.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --ink: #0b1d31;
  --blue: #246bfd;
  --sage: #527d70;
  --soft: #f4f7f8;
  --muted: #536376;
  --line: #d8e1e7;
  --gutter: clamp(22px, 5vw, 80px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Jakarta, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.13;
  text-wrap: balance;
}
h1 {
  font-size: clamp(44px, 4.5vw, 72px);
}
h2 {
  font-size: clamp(32px, 3.3vw, 50px);
}
h3 {
  font-size: 24px;
}
h1 span {
  color: var(--blue);
}
p + p {
  margin-top: 20px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #b7822f;
  outline-offset: 5px;
}
.wrap {
  max-width: 1520px;
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.section {
  padding-block: 90px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--muted);
}
.green {
  color: var(--sage) !important;
}
.lead {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 23px;
  min-height: 50px;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.button.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.button.primary:hover {
  background: #1356d8;
}
.text-link {
  display: inline-block;
  font-weight: 650;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  line-height: 1.6;
  color: var(--blue);
}
.text-link:hover {
  color: var(--ink);
}
.light-link {
  color: #b6d3ff;
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid #6786a1;
}
.skip {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -90px;
  background: white;
  padding: 14px;
}
.skip:focus {
  top: 12px;
}
.site-header {
  height: 98px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fffffff5;
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: none;
  border-bottom: 1px solid #ecf0f3;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.005em;
  font-size: 39px;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.52em;
  margin-top: 9px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.site-header nav a {
  font-size: 13px;
  white-space: nowrap;
}
.site-header nav a:hover,
.site-header nav a[aria-current] {
  color: var(--blue);
}
.header-cta {
  font-size: 13px;
  padding: 12px 17px;
}
.menu-toggle {
  display: none;
}
.home-hero {
  padding-top: 62px;
  padding-bottom: 46px;
}
.hero-heading {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  align-items: center;
  gap: 50px;
}
.hero-heading h1 {
  font-size: clamp(46px, 4.6vw, 74px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.hero-heading > p {
  font-size: 21px;
  line-height: 1.5;
  border-left: 1px solid #b7c7d5;
  padding: 16px 0 16px 38px;
  max-width: 470px;
}
.hero-signature {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  margin-top: 30px;
}
.hero-signature:before {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--ink);
}
.gateways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: 70px;
}
.gateway {
  min-width: 0;
}
.gateway-image {
  display: block;
  aspect-ratio: 1.35;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--sage);
}
.gateway.ai .gateway-image {
  border-color: var(--blue);
}
.gateway-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gateway-image:hover img {
  transform: scale(1.035);
}
.image-caption {
  position: absolute;
  bottom: 22px;
  left: 26px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-shadow: 0 2px 10px #000;
}
.gateway-copy {
  padding: 26px 24px 0;
}
.gateway-copy .eyebrow {
  color: var(--sage);
  margin-bottom: 14px;
}
.gateway.ai .eyebrow {
  color: var(--blue);
}
.gateway-copy h2 {
  font-size: clamp(29px, 2.7vw, 43px);
}
.gateway-copy > p:not(.eyebrow) {
  font-size: 17px;
  margin: 20px 0 25px;
  max-width: 570px;
}
.gateway.estate .text-link {
  color: var(--sage);
}
.inline-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  gap: 0;
  font-size: 13px;
}
.inline-list li {
  padding: 0 15px;
  border-right: 1px solid var(--line);
}
.inline-list li:first-child {
  padding-left: 0;
}
.inline-list li:last-child {
  border: 0;
}
.manifesto {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 9%;
  align-items: start;
}
.manifesto h2 span {
  color: #aecfff;
}
.manifesto p {
  font-size: 18px;
  line-height: 1.7;
  color: #dfebf5;
}
.principles {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  margin-top: 42px;
  font-size: 14px;
}
.principles span {
  padding: 0 32px;
  border-right: 1px solid #758799;
}
.principles span:last-child {
  padding-right: 0;
  border: 0;
}
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-block: 52px;
}
.cta h2 {
  font-size: clamp(28px, 3vw, 44px);
}
.cta .button {
  flex-shrink: 0;
}
.coast {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.coast img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.65);
}
.coast p {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink);
  background: #ffffffe0;
  padding: 12px 20px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 30px;
  padding-block: 42px;
  align-items: center;
}
.footer-grid p {
  font-size: 13px;
  margin: 0;
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 13px;
  gap: 5px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 25px;
  padding-block: 20px;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom span {
  margin-right: auto;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 7%;
  padding-top: 60px;
}
.intro-grid p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 24px;
}
.immo-hero-image {
  position: relative;
}
.immo-hero-image img {
  aspect-ratio: 1.15;
  object-fit: cover;
  border-top: 5px solid #77988c;
}
.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0b1d31e8;
  color: #fff;
  padding: 19px 22px;
  font-size: 14px;
}
.journey {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.journey a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 17px;
  border-block: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
}
.journey a:first-child {
  border-left: 1px solid var(--line);
}
.journey small {
  display: block;
  width: 100%;
  font-size: 12px;
  color: var(--sage);
  margin-bottom: 8px;
}
.journey a:hover {
  background: var(--soft);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 10%;
  align-items: end;
  margin-bottom: 50px;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 0;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
  max-width: 530px;
}
.catalog-group {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 35px;
  border-top: 1px solid var(--line);
  padding-block: 36px;
  scroll-margin-top: 120px;
}
.group-label {
  display: flex;
  gap: 17px;
  align-items: baseline;
}
.group-label > span {
  font-size: 12px;
  color: var(--sage);
}
.group-label h3 {
  font-size: 24px;
}
.catalog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 22px;
}
.solution-card {
  border: 1px solid var(--line);
  padding: 27px;
  display: flex;
  flex-direction: column;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.solution-card:hover {
  background: #f5f9f7;
  border-color: #77988c;
}
.solution-card .eyebrow {
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-bottom: 17px;
  color: var(--sage);
}
.solution-card h3 {
  font-size: 30px;
}
.solution-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 17px 0 24px;
}
.solution-card .text-link {
  margin-top: auto;
  align-self: flex-start;
  font-size: 14px;
  color: var(--sage);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  padding-top: 28px;
}
.breadcrumb a:hover {
  color: var(--blue);
}
.product-hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 9%;
  align-items: center;
  padding-top: 50px;
}
.product-hero .lead {
  margin-bottom: 30px;
  max-width: 690px;
}
.product-hero h1 {
  font-size: clamp(40px, 4vw, 64px);
}
.product-summary {
  background: var(--ink);
  color: #fff;
  padding: 40px;
  border-top: 5px solid #77988c;
}
.product-summary .eyebrow {
  color: #a7c3b8;
  margin-bottom: 20px;
}
.product-name {
  font-size: 42px;
  letter-spacing: -0.06em;
  font-weight: 800;
  line-height: 1.1;
}
.product-summary p + p {
  margin-top: 10px;
  color: #b8cedd;
}
.product-summary ol {
  padding-left: 23px;
  margin: 30px 0;
}
.product-summary li {
  padding: 12px 0 12px 8px;
  border-bottom: 1px solid #ffffff25;
  font-size: 16px;
}
.product-summary li::marker {
  color: #9dc6b5;
}
.summary-end {
  font-size: 13px;
  color: #a7c3b8;
}
.soft {
  background: var(--soft);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.feature-number {
  font-size: 13px;
  color: var(--sage);
}
.feature h3 {
  margin: 18px 0;
  font-size: 24px;
}
.feature p {
  font-size: 16px;
  color: var(--muted);
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.all-solutions {
  display: inline-block;
  margin-top: 25px;
  color: var(--sage);
  font-size: 14px;
}
.narrow {
  max-width: 1050px;
  margin-left: 0;
}
.narrow h1 {
  max-width: 940px;
}
.narrow .lead {
  max-width: 760px;
}
.method {
  padding-bottom: 70px;
}
.method-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.1fr;
  gap: 35px;
  border-top: 1px solid var(--line);
  padding-block: 40px;
}
.method-row > span {
  color: var(--sage);
  font-size: 14px;
}
.method-row h2 {
  font-size: 34px;
}
.method-row p {
  color: var(--muted);
}
.about-coast {
  height: 330px;
}
.signature {
  margin-top: 30px !important;
}
.signature small {
  font-size: 14px;
  color: #9fb5c6;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 35px 0;
}
.contact-details > a {
  font-size: 20px;
}
.contact-details p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 10px;
}
.contact-layout form {
  background: var(--soft);
  padding: 32px;
  border: 1px solid var(--line);
}
form h2 {
  font-size: 28px;
  margin-bottom: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  font-size: 14px;
  margin-bottom: 20px;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #b6c6d1;
  background: #fff;
  color: var(--ink);
  padding: 12px;
  margin-top: 7px;
  border-radius: 0;
  font-size: 16px;
}
textarea {
  resize: vertical;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
form .button {
  width: 100%;
}
.privacy-link {
  font-size: 12px;
  text-decoration: underline;
  color: var(--muted);
  display: inline-block;
  margin-top: 16px;
}
#form-status {
  font-size: 14px;
  margin-top: 15px;
}
#form-status:empty {
  display: none;
}
.prose {
  max-width: 1000px;
}
.prose h2 {
  font-size: 28px;
  margin: 38px 0 18px;
}
.prose p {
  color: var(--muted);
}
.prose a {
  text-decoration: underline;
}
.reveal.pending {
  opacity: 0;
  transform: translateY(32px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.solution-card {
  padding: 0;
  overflow: hidden;
  border-top: 4px solid var(--product-accent);
  background: linear-gradient(
    145deg,
    rgba(var(--product-rgb), 0.11),
    rgba(var(--product-rgb), 0.025) 70%,
    #fff
  );
}
.solution-card:hover {
  border-color: var(--product-accent);
  background: linear-gradient(
    145deg,
    rgba(var(--product-rgb), 0.17),
    rgba(var(--product-rgb), 0.04) 80%
  );
}
.solution-photo {
  overflow: hidden;
  height: 190px;
  flex-shrink: 0;
}
.solution-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.solution-card:hover .solution-photo img {
  transform: scale(1.035);
}
.solution-copy {
  padding: 27px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.solution-card .eyebrow,
.solution-card .text-link {
  color: var(--product-accent);
}
.product-page {
  border-top: 4px solid var(--product-accent);
  background: linear-gradient(
    135deg,
    rgba(var(--product-rgb), 0.095),
    #fff 36%
  );
}
.product-page .product-hero .eyebrow {
  color: var(--product-accent) !important;
}
.product-visual {
  min-width: 0;
  border-top: 4px solid var(--product-accent);
}
.product-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1.55;
  object-fit: cover;
}
.product-visual .product-summary {
  border: 0;
  padding: 28px 32px;
  background:
    linear-gradient(130deg, rgba(var(--product-rgb), 0.8), transparent),
    var(--ink);
}
.product-visual .product-name {
  font-size: 34px;
}
.product-summary .eyebrow,
.product-summary .summary-end {
  color: #e2edf4;
}
.product-summary ol {
  margin: 22px 0;
}
.product-summary li::marker {
  color: #fff;
}
.product-page .soft {
  background: linear-gradient(
    120deg,
    rgba(var(--product-rgb), 0.085),
    rgba(var(--product-rgb), 0.018)
  );
}
.product-page .feature-number {
  color: var(--product-accent);
}
.product-bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-block: 12px 60px;
}
.product-bottom > span {
  font-size: 14px;
  color: var(--muted);
}
.summary-button {
  border-color: var(--product-accent);
  color: var(--product-accent);
}
.summary-button:hover {
  background: var(--product-accent);
  color: #fff;
}
@media (max-width: 520px) {
  .product-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .solution-photo {
    height: 190px;
  }
  .product-visual .product-summary {
    padding: 25px;
  }
}
@media (min-width: 1700px) {
  .site-header {
    padding-inline: max(var(--gutter), calc((100vw - 1360px) / 2));
  }
}
@media (max-width: 1150px) {
  .header-cta {
    display: none;
  }
  .site-header nav {
    gap: 22px;
  }
  .hero-heading {
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
  }
  .hero-heading h1 {
    font-size: 55px;
  }
  .hero-heading > p {
    font-size: 18px;
    padding-left: 25px;
  }
  .inline-list {
    flex-wrap: wrap;
    gap: 9px;
  }
  .inline-list li {
    padding-left: 0;
    padding-right: 12px;
  }
  .gateway-copy {
    padding-inline: 6px;
  }
  .journey a {
    font-size: 14px;
    padding-inline: 12px;
  }
  .catalog-group {
    grid-template-columns: 130px 1fr;
    gap: 24px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .product-summary {
    padding: 28px;
  }
  .product-name {
    font-size: 34px;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 84px;
  }
  .brand-name {
    font-size: 33px;
  }
  .brand-sub {
    font-size: 9px;
  }
  .menu-toggle {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
    background: #fff;
    border: 1px solid var(--line);
    padding: 9px 14px;
    font-size: 14px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px var(--gutter) 28px;
    border-bottom: 1px solid var(--line);
  }
  .site-header.open nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-header nav a {
    padding: 13px 0;
    font-size: 16px;
  }
  .hero-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hero-heading h1 {
    font-size: clamp(42px, 7.5vw, 62px);
  }
  .hero-heading > p {
    border: 0;
    padding: 0;
    max-width: 560px;
    font-size: 19px;
  }
  .home-hero {
    padding-block: 40px 35px;
  }
  .hero-signature {
    font-size: 14px;
  }
  .gateways {
    gap: 22px;
  }
  .gateway-copy h2 {
    font-size: 29px;
  }
  .gateway-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .inline-list {
    display: none;
  }
  .gateway .text-link {
    font-size: 14px;
  }
  .gateway-image {
    aspect-ratio: 1.05;
  }
  .image-caption {
    font-size: 12px;
    left: 17px;
    bottom: 15px;
  }
  .manifesto {
    padding-block: 60px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .principles {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
  }
  .principles span {
    padding: 0 14px 0 0;
    font-size: 13px;
  }
  .cta {
    padding-block: 40px;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-links {
    align-items: flex-start;
    grid-column: 1/-1;
    flex-direction: row;
    gap: 22px;
  }
  .section {
    padding-block: 60px;
  }
  .intro-grid,
  .product-hero,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .immo-hero-image img {
    aspect-ratio: 1.65;
    width: 100%;
  }
  .journey {
    grid-template-columns: repeat(3, 1fr);
  }
  .journey a {
    border: 1px solid var(--line);
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .catalog-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .catalog-cards {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-cards > .solution-card:only-child {
    grid-column: 1/-1;
  }
  .method-row {
    grid-template-columns: 35px 1fr;
    gap: 20px;
  }
  .method-row p {
    grid-column: 2;
  }
  .product-summary {
    max-width: none;
  }
  .about-coast {
    height: 230px;
  }
  .contact-details {
    margin-block: 25px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 33px;
  }
  .home-hero .eyebrow {
    font-size: 10px;
  }
  .hero-heading h1 {
    font-size: clamp(35px, 9.2vw, 48px);
  }
  .hero-signature {
    gap: 12px;
    font-size: 12px;
  }
  .hero-signature:before {
    width: 24px;
  }
  .gateways {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 50px;
  }
  .gateway-image {
    aspect-ratio: 1.35;
  }
  .gateway-copy {
    padding-top: 22px;
  }
  .gateway-copy h2 {
    font-size: 33px;
  }
  .inline-list {
    display: flex;
    font-size: 12px;
    margin-bottom: 22px;
  }
  .gateway .text-link {
    font-size: 15px;
  }
  .manifesto p {
    font-size: 16px;
  }
  .principles {
    display: grid;
    gap: 12px;
  }
  .principles span {
    border: 0;
  }
  .coast {
    height: 140px;
  }
  .coast p {
    font-size: 12px;
    right: 16px;
    padding: 8px 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-links {
    flex-wrap: wrap;
    font-size: 13px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 10px 22px;
  }
  .footer-bottom span {
    width: 100%;
  }
  .feature-grid,
  .related-grid,
  .catalog-cards {
    grid-template-columns: 1fr;
  }
  .feature {
    border-top: 1px solid var(--line);
    padding-top: 22px;
  }
  .product-hero h1 {
    font-size: 38px;
  }
  .lead {
    font-size: 18px;
  }
  .product-summary {
    padding: 25px;
  }
  .method-row h2 {
    font-size: 29px;
  }
  .contact-layout form {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .button {
    max-width: 100%;
  }
  .contact-details > a {
    font-size: 18px;
    overflow-wrap: anywhere;
  }
  .journey a {
    font-size: 13px;
    padding: 14px 9px;
  }
  .breadcrumb {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.pending {
    opacity: 1;
    transform: none;
  }
}
.gateway-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gateway {
  display: flex;
  flex-direction: column;
}
.gateway .gateway-button {
  width: 100%;
  min-height: 68px;
  padding: 20px 24px;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  border: 0;
  margin-top: auto;
  text-align: left;
  box-shadow: 0 8px 22px #0b1d3114;
}
.gateway .estate-button {
  background: #396556;
}
.gateway .ai-button {
  background: #175cec;
}
.gateway .estate-button:hover {
  background: #284d40;
}
.gateway .ai-button:hover {
  background: #1046be;
}
.gateway-button > span:last-child {
  font-size: 26px;
  flex-shrink: 0;
}
.gateway-button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}
@media (max-width: 520px) {
  .gateway .gateway-button {
    padding: 17px 19px;
    font-size: 15px;
    min-height: 66px;
  }
}
.product-interface {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8%;
  align-items: center;
  padding-block: 84px;
}
.interface-intro h2 {
  font-size: clamp(32px, 3.1vw, 48px);
}
.interface-intro > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 390px;
  margin-top: 25px;
}
.ui-window {
  border: 1px solid rgba(var(--product-rgb), 0.25);
  border-top: 4px solid var(--product-accent);
  box-shadow: 0 22px 60px rgba(11, 29, 49, 0.12);
  background: #fff;
  min-width: 0;
}
.ui-top {
  height: 38px;
  background: #f6f8f9;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-bottom: 1px solid #e0e7ea;
}
.ui-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--product-accent);
  opacity: 0.75;
}
.ui-top em {
  font-size: 11px;
  color: var(--muted);
  font-style: normal;
  margin-left: 9px;
  letter-spacing: 0.06em;
}
.ui-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 25px 28px 20px;
}
.ui-heading h3 {
  font-size: 25px;
  letter-spacing: -0.04em;
}
.ui-heading p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.ui-user {
  background: rgba(var(--product-rgb), 0.13);
  color: var(--product-accent);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
}
.ui-tabs {
  display: flex;
  gap: 24px;
  padding: 0 28px;
  border-bottom: 1px solid #dfe7eb;
}
.ui-tabs span {
  font-size: 12px;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
}
.ui-tabs span.active {
  color: var(--product-accent);
  border-color: var(--product-accent);
  font-weight: 750;
}
.ui-rows {
  padding: 8px 28px 17px;
}
.ui-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 15px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #ecf0f2;
  font-size: 12px;
}
.ui-row:last-child {
  border-bottom: 0;
}
.ui-row strong {
  font-size: 13px;
}
.ui-row span {
  color: var(--product-accent);
}
.ui-row small {
  color: var(--muted);
  text-align: right;
}
.ui-swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 28px 18px;
}
.ui-swatch {
  border: 1px solid #dbe3e6;
  padding-bottom: 10px;
}
.ui-swatch span {
  height: 56px;
  display: block;
  margin-bottom: 10px;
}
.ui-swatch strong,
.ui-swatch small {
  display: block;
  padding-inline: 10px;
}
.ui-swatch strong {
  font-size: 12px;
}
.ui-swatch small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.ui-action {
  margin: 0 28px 23px;
  padding: 11px 15px;
  background: var(--product-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .product-interface {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 60px;
  }
  .interface-intro > p:last-child {
    max-width: 560px;
  }
}
@media (max-width: 520px) {
  .ui-heading {
    padding-inline: 20px;
  }
  .ui-tabs {
    padding-inline: 20px;
    gap: 15px;
  }
  .ui-rows {
    padding-inline: 20px;
  }
  .ui-row {
    grid-template-columns: 1fr 1fr;
  }
  .ui-row small {
    grid-column: 2;
    text-align: left;
  }
  .ui-swatches {
    padding-inline: 20px;
    gap: 7px;
  }
  .ui-swatch strong {
    font-size: 11px;
  }
  .ui-action {
    margin-inline: 20px;
  }
}
