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

:root {
  --orange: #ff4e00;
  --orange-dark: #e54100;
  --ink: #282321;
  --muted: #706762;
  --cream: #fff8f3;
  --soft: #fff0e6;
  --line: #f0ddd4;
  --green: #4caf50;
  --white: #fff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(97, 45, 19, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 112px 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
}
.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 23px;
}
.brand-mark {
  display: grid;
  place-items: center;
  color: white;
  transform: rotate(-7deg);
}
.brand-image {
  width: 38px;
  height: 38px;
  border-radius: 13px;
}
.brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand .brand-subtitle {
  display: block;
  margin: 1px 0 0;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-footer .brand-subtitle {
  color: #9e928d;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 600;
  font-size: 14px;
}
.nav-links > a:not(.button):hover {
  color: var(--orange);
}
.button {
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(255, 78, 0, 0.2);
  cursor: pointer;
  transition: 0.25s;
}
.button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}
.button-small {
  padding: 11px 19px;
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--ink);
  margin: 5px;
}
.hero {
  min-height: 790px;
  padding-top: 155px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 40px;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd9c6 0, rgba(255, 217, 198, 0) 68%);
  right: -120px;
  top: 90px;
  z-index: -1;
}
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}
h1,
h2,
h3 {
  font-family: "Nunito", sans-serif;
  line-height: 1.07;
  margin: 0;
}
h1 {
  font-size: clamp(51px, 6vw, 78px);
  letter-spacing: -0.045em;
  max-width: 660px;
  margin-top: 18px;
}
h1 em {
  color: var(--orange);
  font-style: normal;
  position: relative;
}
h1 em:after {
  content: "";
  position: absolute;
  height: 9px;
  border-radius: 50%;
  background: #ffb794;
  left: 3px;
  right: 3px;
  bottom: -3px;
  z-index: -1;
}
.hero-lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 590px;
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link {
  font-weight: 700;
}
.text-link span {
  color: var(--orange);
  margin-left: 5px;
}
.trust-row {
  display: flex;
  gap: 34px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.trust-row div {
  display: flex;
  flex-direction: column;
}
.trust-row strong {
  font-family: "Nunito";
  font-size: 18px;
}
.trust-row span {
  font-size: 12px;
  color: var(--muted);
}
.hero-visual {
  height: 590px;
  position: relative;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border: 1px dashed #ffb896;
  border-radius: 50%;
}
.orbit-one {
  width: 520px;
  height: 520px;
}
.orbit-two {
  width: 420px;
  height: 420px;
}
.phone {
  width: 278px;
  height: 566px;
  padding: 10px;
  border-radius: 46px;
  background: #222;
  box-shadow: 0 35px 70px rgba(57, 31, 20, 0.27);
  position: relative;
  transform: rotate(4deg);
  z-index: 2;
}
.phone-speaker {
  position: absolute;
  z-index: 5;
  width: 80px;
  height: 22px;
  background: #222;
  border-radius: 0 0 15px 15px;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
}
.phone-screen {
  height: 100%;
  border-radius: 37px;
  overflow: hidden;
  background: #fff;
}
.app-bar {
  height: 78px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 17px 14px;
  font-size: 13px;
}
.app-bar strong {
  font-family: "Nunito";
  font-size: 17px;
}
.dog-card {
  height: 388px;
  margin: 13px;
  border-radius: 27px;
  overflow: hidden;
  background: #ffd1b6;
  position: relative;
  box-shadow: 0 10px 25px #ce96795e;
}
.dog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dog-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 60px 18px 17px;
  color: #fff;
  background: linear-gradient(transparent, rgba(38, 18, 10, 0.8));
  display: flex;
  flex-direction: column;
}
.dog-info strong {
  font-size: 24px;
  font-family: "Nunito";
}
.dog-info span {
  font-size: 13px;
}
.app-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.app-actions button {
  width: 49px;
  height: 49px;
  border: 0;
  border-radius: 50%;
  background: white;
  box-shadow: 0 7px 20px #0002;
  font-size: 23px;
  color: var(--orange);
}
.app-actions button:first-child {
  color: #5fd466;
}
.app-actions button:nth-child(2) {
  color: #ffb74d;
}
.floating-card {
  position: absolute;
  z-index: 4;
  background: #fff;
  border: 1px solid #f5e5db;
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 12px 17px;
  font-weight: 700;
  font-size: 13px;
}
.floating-card span {
  color: var(--orange);
  margin-right: 6px;
}
.floating-save {
  top: 110px;
  left: 3px;
  transform: rotate(-5deg);
}
.floating-match {
  right: -15px;
  bottom: 120px;
  transform: rotate(4deg);
}
.paw {
  position: absolute;
  color: #ffc6aa;
  font-size: 28px;
}
.paw-one {
  left: 75px;
  bottom: 68px;
}
.paw-two {
  right: 78px;
  top: 58px;
}
.purpose {
  padding: 72px 0;
  background: var(--ink);
  color: #fff;
}
.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.section-heading h2,
.center-heading h2,
.contact-copy h2,
.shelter-copy h2 {
  font-size: clamp(38px, 4vw, 55px);
  letter-spacing: -0.035em;
  margin-top: 12px;
}
.purpose-copy {
  font-size: 18px;
  color: #d8cfca;
  margin: 0;
}
.center-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.center-heading p {
  color: var(--muted);
  font-size: 17px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  min-height: 290px;
  box-shadow: 0 12px 35px rgba(90, 45, 25, 0.06);
  transition: 0.3s;
}
.step-card:hover {
  transform: translateY(-8px);
}
.step-card.featured {
  background: var(--orange);
  color: #fff;
  transform: translateY(-18px);
}
.step-card.featured:hover {
  transform: translateY(-25px);
}
.step-number {
  position: absolute;
  right: 25px;
  top: 20px;
  font-family: "Nunito";
  font-size: 45px;
  font-weight: 900;
  opacity: 0.08;
}
.step-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 29px;
  margin-bottom: 28px;
}
.featured .step-icon {
  background: #ffffff29;
  color: white;
}
.step-card h3 {
  font-size: 26px;
}
.step-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.featured p {
  color: #fff5ee;
}
.shelter-section {
  background: var(--orange);
  color: white;
  overflow: hidden;
}
.shelter-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 80px;
}
.kicker-light {
  color: #ffd9c7;
}
.shelter-copy p {
  color: #fff1e9;
  font-size: 17px;
}
.shelter-copy ul {
  padding: 0;
  list-style: none;
  margin: 27px 0;
}
.shelter-copy li {
  margin: 13px 0;
  font-weight: 600;
}
.shelter-copy li span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 9px;
  border-radius: 50%;
  background: white;
  color: var(--orange);
}
.button-light {
  background: white;
  color: var(--orange);
  box-shadow: none;
}
.button-light:hover {
  background: #fff0e8;
}
.dashboard-preview {
  background: #fff7f2;
  border: 8px solid #342724;
  border-radius: 27px;
  color: var(--ink);
  box-shadow: 0 32px 80px #8e260050;
  transform: perspective(1000px) rotateY(6deg);
}
.dash-top {
  height: 55px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}
.mini-brand {
  font-family: "Nunito";
  font-weight: 900;
  color: var(--orange);
  font-size: 14px;
}
.dash-body {
  display: flex;
  min-height: 330px;
}
.dash-side {
  width: 72px;
  background: #2d2523;
  padding: 34px 20px;
}
.dash-side i {
  display: block;
  height: 8px;
  border-radius: 6px;
  background: #ffffff33;
  margin-bottom: 24px;
}
.dash-side i:first-child {
  background: var(--orange);
}
.dash-content {
  padding: 34px;
  flex: 1;
}
.dash-content p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.dash-content h3 {
  font-size: 25px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0;
}
.metrics span {
  display: flex;
  flex-direction: column;
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 9px;
  color: var(--muted);
}
.metrics b {
  font-family: "Nunito";
  color: var(--ink);
  font-size: 19px;
}
.chart {
  height: 100px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  padding: 15px 18px;
}
.chart i {
  flex: 1;
  background: #ffb18d;
  border-radius: 4px 4px 0 0;
}
.chart i:nth-child(1) {
  height: 35%;
}
.chart i:nth-child(2) {
  height: 50%;
}
.chart i:nth-child(3) {
  height: 44%;
}
.chart i:nth-child(4) {
  height: 70%;
  background: var(--orange);
}
.chart i:nth-child(5) {
  height: 58%;
}
.chart i:nth-child(6) {
  height: 82%;
  background: var(--orange);
}
.chart i:nth-child(7) {
  height: 65%;
}
.contact-section {
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.contact-copy > p {
  color: var(--muted);
  font-size: 17px;
}
.contact-note {
  margin-top: 38px;
  padding: 22px;
  background: var(--soft);
  border-radius: 20px;
  display: flex;
  gap: 15px;
}
.contact-note span {
  color: var(--orange);
  font-size: 24px;
}
.contact-note p {
  margin: 0;
  font-size: 13px;
}
.contact-form {
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 19px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: #fffaf7;
  border-radius: 13px;
  padding: 13px 15px;
  color: var(--ink);
  outline: none;
  transition: 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px #ff4e0015;
}
.contact-form textarea {
  resize: vertical;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
}
.submit-button {
  width: 100%;
  justify-content: space-between;
}
.submit-button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}
.form-status.success {
  color: var(--green);
}
.form-status.error {
  color: #c82c20;
}
footer {
  padding: 55px 0;
  background: #241e1c;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 50px;
}
.brand-footer .brand-mark {
  width: 34px;
  height: 34px;
}
.footer-grid > div > p {
  color: #9e928d;
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 25px;
  font-size: 13px;
}
.copyright {
  color: #9e928d;
  font-size: 12px;
}
.reveal {
  animation: rise 0.75s ease both;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    display: none;
    top: 78px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
    text-align: center;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-visual {
    height: 620px;
  }
  .trust-row {
    justify-content: center;
  }
  .purpose-grid,
  .shelter-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .purpose-grid {
    gap: 25px;
  }
  .shelter-copy {
    order: -1;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-links {
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 78px 0;
  }
  .nav {
    height: 76px;
  }
  .brand {
    font-size: 20px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .hero {
    padding-top: 112px;
    min-height: auto;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }
  .trust-row {
    gap: 16px;
    width: 100%;
    justify-content: space-between;
  }
  .trust-row span {
    font-size: 10px;
  }
  .hero-visual {
    height: 540px;
  }
  .orbit-one {
    width: 390px;
    height: 390px;
  }
  .orbit-two {
    width: 330px;
    height: 330px;
  }
  .phone {
    width: 242px;
    height: 493px;
  }
  .dog-card {
    height: 328px;
  }
  .floating-save {
    left: -3px;
    top: 84px;
  }
  .floating-match {
    right: -7px;
    bottom: 85px;
  }
  .purpose {
    padding: 60px 0;
  }
  .purpose-grid {
    text-align: center;
  }
  .steps {
    gap: 18px;
  }
  .step-card {
    min-height: auto;
  }
  .dashboard-preview {
    transform: none;
  }
  .dash-side {
    display: none;
  }
  .dash-content {
    padding: 22px;
  }
  .metrics {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-form {
    padding: 24px 19px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    animation: none;
  }
  .button,
  .step-card {
    transition: none;
  }
}
.legal-header {
  position: relative;
  background: #fff7f2;
  border-bottom: 1px solid var(--line);
}
.legal-nav-links {
  display: flex;
}
.legal-main {
  padding: 54px 0 90px;
}
.legal-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--orange);
  font-weight: 800;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 32px;
  padding: clamp(28px, 5vw, 58px);
}
.legal-card h1 {
  font-size: clamp(38px, 5vw, 62px);
  max-width: 850px;
}
.legal-meta {
  color: var(--muted);
  font-weight: 700;
  margin: 14px 0 30px;
}
.legal-status {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff1e9;
  color: var(--orange);
  font-weight: 800;
}
.legal-status.error {
  background: #fff0f0;
  color: #b42318;
}
.legal-content {
  max-width: 900px;
  color: var(--ink);
}
.legal-content h2 {
  font-size: 24px;
  margin: 32px 0 12px;
  color: var(--orange);
}
.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #57463f;
  margin: 0 0 14px;
}
.legal-bullet {
  position: relative;
  padding-left: 22px;
}
.legal-bullet:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
@media (max-width: 900px) {
  .legal-nav-links {
    position: static;
    display: flex;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    flex-direction: row;
  }
}
@media (max-width: 560px) {
  .legal-nav-links {
    gap: 10px;
    font-size: 12px;
  }
  .legal-nav-links .button {
    display: none;
  }
  .legal-main {
    padding: 30px 0 70px;
  }
  .legal-card {
    border-radius: 24px;
  }
  .legal-content p {
    font-size: 15px;
  }
}
.delete-account-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}
.delete-account-copy > p {
  color: var(--muted);
  font-size: 17px;
}
.delete-account-copy h2 {
  font-size: 24px;
  margin: 28px 0 10px;
  color: var(--orange);
}
.delete-account-copy ul {
  margin: 0;
  padding-left: 20px;
  color: #57463f;
}
.delete-account-copy li {
  margin: 8px 0;
}
.delete-account-note {
  display: flex;
  gap: 14px;
  margin: 24px 0;
  padding: 18px;
  border-radius: 20px;
  background: var(--soft);
  color: #57463f;
}
.delete-account-note span {
  font-size: 24px;
}
.delete-account-note p {
  margin: 4px 0 0;
  font-size: 14px;
}
.delete-account-form {
  box-shadow: none;
}
.checkbox-label {
  display: flex !important;
  gap: 11px;
  align-items: flex-start;
  font-weight: 600 !important;
  line-height: 1.45;
}
.checkbox-label input {
  width: auto !important;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .delete-account-card {
    grid-template-columns: 1fr;
  }
  .delete-account-form {
    padding: 26px;
  }
}
@media (max-width: 560px) {
  .delete-account-main {
    padding-top: 24px;
  }
  .delete-account-card {
    gap: 24px;
  }
  .delete-account-form {
    padding: 20px;
  }
}
